标签:net txt nmp 切换 tree -- sudo src inux
刘超 2018/10/17 10:33:39 ps -ef|grep swoole_xx|grep -v grep|awk ‘{print $2}‘|xargs kill -9 刘超 2018/10/17 10:35:20 pstree -ap|grep swoole_xx 刘超 2018/10/17 11:27:29 ls -i * find ./* -inum 1049741 |xargs rm -f 刘超 21:33:55 拥有sudo权限,切换到root sudo su 从root切换到普通用户 su - liuchao 刘超 21:33:55 跟踪进程系统调用 netstrace -p xxxxx
刘超 2018/10/13 1:35:45 $find . -type f ! -name ‘*.log‘ -type f ! -name ‘*.sh‘ | xargs grep -H ‘network‘ [#21#root@ ~] $find . -name ‘*.txt‘ -name ‘*ssleay*‘ | xargs grep -H ‘network‘ ./lnmp1.4/src/openssl-1.0.2l/doc/ssleay.txt: authentication/encryption over networks, have a look at SSL instead. [#22#root@ ~] $find . -name ‘*.txt‘ -a -name ‘*ssleay*‘ | xargs grep -H ‘network‘ ./lnmp1.4/src/openssl-1.0.2l/doc/ssleay.txt: authentication/encryption over networks, have a look at SSL instead. [#23#root@ ~] $find . -name ‘*.txt‘ -a -name ‘*ssleay*‘ | xargs grep -H -n ‘network‘ ./lnmp1.4/src/openssl-1.0.2l/doc/ssleay.txt:3168: authentication/encryption over networks, have a look at SSL instead. [#24#root@ ~] $find . -name ‘*.txt‘ -a -name ‘*ssleay*‘ | xargs grep --color -H -n ‘network‘ ./lnmp1.4/src/openssl-1.0.2l/doc/ssleay.txt:3168: authentication/encryption over networks, have a look at SSL instead. 查看swoole扩展信息 [#24#root@ ~] php -ri swoole [#24#root@ ~] /opt/aspire/product/tst_cmdn/php/bin/php -r "print_r(get_declared_classes());"|grep -i ‘swoole‘ 查看文件大小 [#24#root@ ~] du -sh xxx.zip
标签:net txt nmp 切换 tree -- sudo src inux
原文地址:https://www.cnblogs.com/hnhycnlc888/p/9807298.html