Como posso executar um shell script em segundo plano?
Como posso executar um shell script em segundo plano?
Respostas:
Dependendo do que você deseja, basta adicionar um & no final do comando
script.sh &
command &
Se você estiver executando-o em um terminal e quiser fechar o terminal, use nohup ou renuncie
nohup
nohup script.sh &
renegar
script &
disown
Se não é isso que você procura, seja mais específico em sua pergunta.
htop
para ver o uso da CPU, mas o problema é que o primeiro script começa a criar saída para o console e parece impedir outras ações (execute o segundo script, execute htop
).
você pode simplesmente mudar de tela e executar seu script nessa segunda tela. Quando o script iniciou no 2º, volte para o 1º e faça o que quiser. A segunda tela ficará em segundo plano como uma "janela terminal" extra. e ele não interromperá o processamento, mesmo quando você fechar sua conexão ssh enquanto estiver na 1ª tela.
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, ccriará uma nova "janela" na sua sessão de tela ativa. Você pode alternar entre várias janelas (como Ansgar indicou) com ctrl+ a, npara a próxima janela e ctrl+ a, ppara a janela anterior.
ctrl+ a, "fornecerá uma lista de todas as suas janelas abertas.
Mais: https://superuser.com/questions/476709/quickly-switching-between-virtual-sessions-screen
Se você deseja que o script permaneça após o fechamento do terminal, outra opção é usar setsid
:
setsid script.sh
Para mais informações sobre as diferenças entre nohup
, disown
, &
e setsid
: Diferença entre nohup, repudiam e &