Jak mogę uruchomić skrypt powłoki w tle?
Jak mogę uruchomić skrypt powłoki w tle?
Odpowiedzi:
W zależności od tego, czego chcesz, po prostu dodaj znak & na końcu polecenia
script.sh &
command &
Jeśli używasz go w terminalu i chcesz go zamknąć, użyj nohup lub disown
nohup
nohup script.sh &
zapierać się
script &
disown
Jeśli nie tego szukasz, prosimy o bardziej szczegółowe określenie swojego pytania.
htop
aby zobaczyć użycie procesora, ale problem polega na tym, że pierwszy skrypt rozpoczyna tworzenie danych wyjściowych do konsoli i wydaje się, że uniemożliwia inne działania (uruchom drugi skrypt, uruchom htop
).
możesz po prostu przełączyć ekran i uruchomić skrypt na drugim ekranie. Kiedy skrypt zacznie działać na 2. poziomie, przełącz się z powrotem na 1. i rób co chcesz. Drugi ekran będzie w tle jako dodatkowe „okno terminala”. i nie przestanie przetwarzać nawet po zamknięciu połączenia ssh podczas pracy na 1. ekranie.
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, cutworzy nowe „okno” w aktywnej sesji ekranu. Możesz przełączać się między wieloma oknami (jak wskazano w Ansgar) za pomocą ctrl+ a, ndla następnego okna i ctrl+ a, pdla poprzedniego okna.
ctrl+ a, "wyświetli listę wszystkich otwartych okien.
Więcej informacji: https://superuser.com/questions/476709/quickly-switching-between-virtual-sessions-screen
Jeśli chcesz, aby skrypt pozostał po zamknięciu terminala, inną opcją jest użycie setsid
:
setsid script.sh
Aby uzyskać więcej informacji na temat różnic między nohup
, disown
, &
i setsid
: Różnica między nohup, wyprzeć i &