grep 精确匹配
如果是有进程名为abcd, abcde,abc等有包含”abc”字符的
$ grep "abc" # 结果为abcd, abcde, abc等
$ grep -w "abc" # 结果为abc