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.
到目前为止,我已经编写了以下 unix 命令:
ps -Ajc | grep loginwindow | cut -c 16-20 | sed 's/ //g'
这会抓取“loginwindow”进程,使用 cut 和 sed 对其进行过滤以返回“loginwindow”进程的编号。
我想知道如何将检索到的号码用于流程。
谢谢你。
这似乎是一个漫长的过程。为什么不直接使用killall loginwindow?
killall loginwindow
kill `ps -Ajc | grep loginwindow | cut -c 16-20 | sed 's/ //g'`