Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当然,我不能只用 grep 搜索“R”,因为这不够具体……所以我尝试使用which
which
$ which R /usr/bin/R
所以然后用这个来grep,
$ ps aux | grep /usr/bin/R
只显示我自己的 grep 命令。
试试这个:
ps aux | grep /exec/R
你可以试试这个:
ps aux | grep R\$
这将搜索以 结尾的行R,这应该会找到您想要的内容。
R