当前位置: 首页>>技术问答>>正文


如何在后台运行shell脚本?

, ,

问题描述

如何在后台运行shell脚本?

最佳解决办法

根据您的需要,只需添加&到命令的末尾

script.sh &
command &

如果您在终端中运行它,然后想要关闭终端,请使用nohup或disown

nohup的

nohup script.sh &

script &
disown

如果这不是你想要的,请在你的问题中更具体。

次佳解决办法

您可以在第二个屏幕上切换屏幕并运行脚本。当脚本在第二个开始时,切换回第一个并做任何你想做的事情。第二个屏幕将在后台作为额外的”terminal window”。即使在第1屏幕上关闭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 + ac将在您的活动屏幕会话中创建一个新的”window”。您可以在下一个窗口中使用ctrl + an和前一个窗口的ctrl + ap切换多个窗口(如Ansgar所示)。

ctrl + a"将为您提供所有打开窗口的列表。

更多:https://superuser.com/questions/476709/quickly-switching-between-virtual-sessions-screen

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/2988.html,未经允许,请勿转载。