整改意见:ps-ef|grepsshd|grep-v"grep"
ps -ef|grep sshd
ps -ef:打开所有的进程
grep sshd:过滤出含有“sshd”字符的进程。
grep 是查找含有指定文本行的意思,比如grep test 就是查找含有test的文本的行
grep -v 是反向查找的意思,比如 grep -v grep 就是查找不含有 grep 字段的行
整改意见:ps-ef|grepsshd|grep-v"grep"
ps -ef|grep sshd
ps -ef:打开所有的进程
grep sshd:过滤出含有“sshd”字符的进程。
grep 是查找含有指定文本行的意思,比如grep test 就是查找含有test的文本的行
grep -v 是反向查找的意思,比如 grep -v grep 就是查找不含有 grep 字段的行