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.
/procディレクトリにアクセスし、プロセスIDとコマンドライン(cmdline)情報をファイルに保存するrubyスクリプトを探しています。
/proc
cmdline
psに行く代わりに電話したいかもしれません/proc。
ps
cmd=`ps -eo pid,cmd` o = File.open("output","w") o.write(cmd) o.close