Как запустить скрипт в фоновом режиме?

Как я могу запустить скрипт в фоновом режиме?

Решение

В зависимости от того, что вы хотите, просто добавьте & в конце команды

script.sh &
command &

Если вы работаете в терминале, и вы хотите, чтобы затем закрыть терминал, использовать nohup или откреститься

команды nohup

nohup script.sh &

откреститься

script &
disown

Если это не то, что вы после, пожалуйста, будьте более конкретными в своем вопросе.

Комментарии (3)

вы можете просто включить экран и запустить свой сценарий на 2-м экране. Когда скрипт запускается на 2-й, вернуться к 1-й и делай, что хочешь. 2-й экран будет в фоновом режиме в качестве дополнительных "в окне терминала и". и его не остановит обработку даже при закрытии SSH-соединение, будучи на 1-м экране.

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 .sockname instead of ...
-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  as a screen command in the specified session.

<и>сочетание клавиш Ctrl</роз>+<и>а</роз>, <и>в</роз> создаст новый и"окно" в вашем активном окне сеанса. Вы можете переключаться между несколькими окнами (как Ансгар указано) с <и>сочетание клавиш Ctrl</роз>+<и>а</роз>, <и>п</роз> на следующем окне, а <и>сочетание клавиш Ctrl</роз>+<и>а</КБД>,<и>Р</роз> на предыдущее окно.

<и>сочетание клавиш Ctrl</роз>+<и>а</роз>,<и>" и</роз> даст вам список всех открытых окон.

Подробнее: https://superuser.com/questions/476709/quickly-switching-between-virtual-sessions-screen

Комментарии (0)

Если вы хотите, чтобы скрипт оставаться после закрытия терминала, другой вариант-использовать setsid`:

setsid script.sh

; И setsid: [разница между nohup, в открестилась и&] для получения дополнительной информации о различиях между nohup и, откреститься, &ампер1

Комментарии (0)