백그라운드에서 쉘 스크립트를 실행하는 방법은 무엇입니까?


답변:


93

원하는 것에 따라 명령 끝에 &를 추가하십시오.

script.sh &
command &

터미널에서 실행 중이고 터미널을 닫으려면 nohup 또는 disown을 사용하십시오.

노프

nohup script.sh &

자기 것이 아니라고 말하다

script &
disown

그것이 당신이 추구하는 것이 아닌 경우, 귀하의 질문에 더 구체적으로 기재하십시오.


당신은 가장 환영합니다
Panther

예를 들어 2 개의 scipts를 실행해야하고 htopCPU 사용량을 확인 하기 위해 실행하려고 하지만 문제는 첫 번째 스크립트가 콘솔에 출력을 생성하기 시작하고 다른 작업 (두 번째 스크립트 실행, run htop)을 방지하는 것 입니다.
mrgloom

스크립트에 인쇄 문이있는 경우 해당 문구가 터미널에 표시됩니까?
Charlie Parker

2

화면을 전환하고 해당 두 번째 화면에서 스크립트를 실행할 수 있습니다. 스크립트가 2 일에 시작되면 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+ a, c활성 화면 세션에서 새 "창"을 만듭니다. 당신은 (안스가 표시됨) 여러 창 사이를 전환 할 수 있습니다 ctrl+ a, n다음 창에 대한, 그리고 ctrl+ a, p이전 창에 대해.

ctrl+ a, "열려있는 모든 창의 목록을 제공합니다.

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


당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.