ps -ef |grep cusip_full_is | grep -v grep | wc -l | awk '{ print $1; }'
问题描述:
ps -ef |grep cusip_full_is | grep -v grep | wc -l | awk '{ print $1; }'
我知道 ps -ef|grep cusip_full_is 就是查找cusip_full_is的进程,后面的就不懂了,grep -v grep是反选的意思,加起来就更不明白了,
答
ps -ef |全格式显示当前所有进程grep cusip_full_is 滤出''cusip_full_is''的进程grep -v grep 把''grep''这个进程忽略掉wc -l...