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.
3秒ごとにコマンドを呼び出すデーモンスクリプトが必要です:cat / proc / stat> / some / file
誰かがこれをどのように作成してセットアップするのを手伝ってくれますか?(システムはdebian squeezeです)
このような?
#!/bin/sh while true do cat /proc/stat > /some/file sleep 3 done
で実行します/path/to/scrip.sh &
/path/to/scrip.sh &
(末尾&を使用してバックグラウンドで実行します。つまり、「デーモン」モードです)
&
それはそれほど洗練されていません(例えば、それが開始されたらそれを止めるのはそれを殺すことによってのみ厄介です)が、あなたが要求したことをします。