Come posso eseguire uno script di shell in background?
Come posso eseguire uno script di shell in background?
Risposte:
A seconda di ciò che si desidera, è sufficiente aggiungere un & alla fine del comando
script.sh &
command &
Se lo si esegue in un terminale e si desidera quindi chiudere il terminale, utilizzare nohup o disconnessione
nohup
nohup script.sh &
rinnegare
script &
disown
Se non è quello che stai cercando, si prega di essere più specifici nella domanda.
htop
per vedere l'utilizzo della CPU, ma il problema è che il 1 ° script inizia a creare output sulla console e sembra impedire altre azioni (esegui il secondo script, esegui htop
).
puoi semplicemente cambiare schermata ed eseguire il tuo script su quella seconda schermata. Quando lo script è iniziato il 2 °, torna al 1 ° e fai quello che vuoi. La seconda schermata verrà visualizzata in background come "finestra terminale" aggiuntiva. e non interromperà l'elaborazione anche quando si chiude la connessione ssh mentre si è alla prima schermata.
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, ccreerà una nuova "finestra" nella sessione dello schermo attiva. Puoi alternare più finestre (come indicato da Ansgar) con ctrl+ a, nper la finestra successiva e ctrl+ a, pper la finestra precedente.
ctrl+ a, "ti darà un elenco di tutte le finestre aperte.
Altro: https://superuser.com/questions/476709/quickly-switching-between-virtual-sessions-screen
Se vuoi che lo script rimanga dopo aver chiuso il terminale, un'altra opzione è usare setsid
:
setsid script.sh
Per ulteriori informazioni sulle differenze tra nohup
, disown
, &
e setsid
: Differenza tra nohup, disown e &