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.
我想保存后台进程的 PID 并将其与 linux 中的进程名称一起保存到文件中。这样做的命令是什么?有人可以帮帮我吗?
我不确定你所说的“进程名称”是什么,但在 Bourne shell 中,你可以通过 shell 变量获得后台进程的 PID $!。例如:
$!
sleep 1000 & echo "$! sleep 1000" >>/tmp/save_file.txt