ps -ef #显示进程
ps -ef|more #一页一页显示(启动了两个进程)
root 21633 21034 0 07:30 pts/1 00:00:00 ps -ef
root 21634 21034 0 07:30 pts/1 00:00:00 more
ps -ef|less #同上,不允许为cat
ps -ef|grep 搜索内容
#在ps -ef结果中搜索包括搜索内容的进程
ps -ef|grep /usr |awk '{print $2}'
#显示搜索结果的第二列,以空格为分隔符
ps -ef|grep /usr |awk '{print $2}'|sort|uniq #sort排序 uniq去重
cat /etc/passwd|awk -F":" '{print $1}' #-F 分隔符
ps -h #帮助
ps -help #帮助
man ps #Manual手册显示
ctrl+a #到命令行首
ctrl+e #到命令行尾
ctrl+u #清除命令行
top
cd /proc #此文件夹下显示所有进程
ps -ef|tail
网友评论