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シェルでは、シェル変数を使用してバックグラウンドプロセスのPIDを取得します$!。例えば:
$!
sleep 1000 & echo "$! sleep 1000" >>/tmp/save_file.txt