バックグラウンドでシェルスクリプトを実行するにはどうすればよいですか?
バックグラウンドでシェルスクリプトを実行するにはどうすればよいですか?
回答:
目的に応じて、コマンドの最後に&を追加します
script.sh &
command &
ターミナルで実行していて、ターミナルを閉じたい場合は、nohupまたはdisownを使用します
いや
nohup script.sh &
否認する
script &
disown
それがあなたが望んでいるものではない場合、あなたの質問でより具体的にしてください。
htop
、CPU使用率を確認するために実行したいのですが、問題は、最初のスクリプトがコンソールへの出力の作成を開始し、他のアクションを妨げるように見えることです(2番目のスクリプトを実行、実行htop
)。
画面を切り替えて、その2番目の画面でスクリプトを実行するだけです。スクリプトが2日に開始されたら、1に戻って、必要な操作を行います。2番目の画面は、追加の「端末ウィンドウ」としてバックグラウンドにあります。また、最初の画面でビーイング中にssh接続を閉じても処理を停止しません。
screen --help
Use: screen [-opts] [cmd [args]]
or: screen -r [host.tty]
Options:
-4 Resolve hostnames only to IPv4 addresses.
-6 Resolve hostnames only to IPv6 addresses.
-a Force all capabilities into each window's termcap.
-A -[r|R] Adapt all windows to the new display width & height.
-c file Read configuration file instead of '.screenrc'.
-d (-r) Detach the elsewhere running screen (and reattach here).
-dmS name Start as daemon: Screen session in detached mode.
-D (-r) Detach and logout remote (and reattach here).
-D -RR Do whatever is needed to get a screen session.
-e xy Change command characters.
-f Flow control on, -fn = off, -fa = auto.
-h lines Set the size of the scrollback history buffer.
-i Interrupt output sooner when flow control is on.
-l Login mode on (update /var/run/utmp), -ln = off.
-ls [match] or -list. Do nothing, just list our SockDir [on possible matches].
-L Turn on output logging.
-m ignore $STY variable, do create a new screen session.
-O Choose optimal output rather than exact vt100 emulation.
-p window Preselect the named window if it exists.
-q Quiet startup. Exits with non-zero return code if unsuccessful.
-r [session] Reattach to a detached screen process.
-R Reattach if possible, otherwise start a new session.
-s shell Shell to execute rather than $SHELL.
-S sockname Name this session <pid>.sockname instead of <pid>.<tty>.<host>.
-t title Set title. (window's name).
-T term Use term as $TERM for windows, rather than "screen".
-U Tell screen to use UTF-8 encoding.
-v Print "Screen version 4.01.00devel (GNU) 2-May-06".
-wipe [match] Do nothing, just clean up SockDir [on possible matches].
-x Attach to a not detached screen. (Multi display mode).
-X Execute <cmd> as a screen command in the specified session.
ctrl+ a、cアクティブなスクリーンセッションで新しい「ウィンドウ」を作成します。あなたは(アンスガーが示されているように)で、複数のウィンドウを切り替えることができますctrl+ a、n次のウィンドウのために、そしてctrl+ a、p前のウィンドウのために。
ctrl+ a、"開いているすべてのウィンドウのリストが表示されます。
詳細:https : //superuser.com/questions/476709/quickly-switching-between-virtual-sessions-screen
ターミナルを閉じた後もスクリプトを残したい場合は、別のオプションを使用しますsetsid
。
setsid script.sh
違いの詳細についてはnohup
、disown
、&
とsetsid
:nohupをとの違いは、と&勘当します