我试图找出adb shell中是否存在匹配单词的进程?
我搜索并尝试了很多,但我找到的最接近的是使用pgrep <word>
shell@rolex:/ $ pgrep -f whatsapp
29775
但是这只显示了进程ID,而不是只显示ps
时看到的其他列我想要什么
shell@rolex:/ $ some ps/grep command which shows full process based on partial keyword
USER PID PPID VSIZE RSS WCHAN PC NAME
u0_a64 29775 627 1021744 37524 SyS_epoll_ 0000000000 S com.whatsapp
答案 0 :(得分:0)
pgrep
只会为您提供进程ID。我想你真正想要的是
ps aux | grep <term>