当前位置: 技术问答>linux和unix
帮忙看下代码。。。网上找了半天找不到。。
来源: 互联网 发布时间:2016-06-15
本文导语: /bin/ps -C aaa>/dev/null 2>&1 这个 -c是什么意思啊 | -C 指定要查看的程序名字。 | -C cmdlist Select by command name. This selects the processes whose execu...
/bin/ps -C aaa>/dev/null 2>&1
这个 -c是什么意思啊
这个 -c是什么意思啊
|
-C 指定要查看的程序名字。
|
-C cmdlist Select by command name.
This selects the processes whose executable name is given in
cmdlist.
Print only the process IDs of syslogd:
ps -C syslogd -o pid=
摘man ps
This selects the processes whose executable name is given in
cmdlist.
Print only the process IDs of syslogd:
ps -C syslogd -o pid=
摘man ps
|
-C cmdlist Select by command name.
This selects the processes whose executable name is given in cmdlist.
man一下就有结果啦 呵呵
一般
ps 后带参数 ps -ej ps -aux ps -ely 等等
This selects the processes whose executable name is given in cmdlist.
man一下就有结果啦 呵呵
一般
ps 后带参数 ps -ej ps -aux ps -ely 等等
|
此句貌似与
/bin/ps -C aaa >&/dev/null
一样
/bin/ps -C aaa >&/dev/null
一样