linux命令
Posted hnhycnlc888
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux命令相关的知识,希望对你有一定的参考价值。
刘超 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#[email protected] ~] $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#[email protected] ~] $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#[email protected] ~] $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#[email protected] ~] $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#[email protected] ~] php -ri swoole [#24#[email protected] ~] /opt/aspire/product/tst_cmdn/php/bin/php -r "print_r(get_declared_classes());"|grep -i ‘swoole‘ 查看文件大小 [#24#[email protected] ~] du -sh xxx.zip
以上是关于linux命令的主要内容,如果未能解决你的问题,请参考以下文章
markdown [Docker] Docker片段列表和命令#linux #docker #snippets
Android 逆向Linux 文件权限 ( Linux 权限简介 | 系统权限 | 用户权限 | 匿名用户权限 | 读 | 写 | 执行 | 更改组 | 更改用户 | 粘滞 )(代码片段