1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 07:35:42 +02:00
tldr/pages.ko/common/nohup.md
K.B.Dharun Krishna 898f711019
pages/*: update GNU coreutils links, sync translation pages (#15543)
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2025-01-18 18:45:33 +05:30

665 B

nohup

터미널이 종료되어도 프로세스가 계속 실행되도록 허용. 더 많은 정보: https://www.gnu.org/software/coreutils/manual/html_node/nohup-invocation.html.

  • 터미널 종료 후에도 계속 실행되는 프로세스 시작:

nohup {{명령}} {{인수1 인수2 ...}}

  • 백그라운드 모드에서 nohup 실행:

nohup {{명령}} {{인수1 인수2 ...}} &

  • 터미널 종료 후에도 계속 실행되는 셸 스크립트 실행:

nohup {{경로/대상/스크립트.sh}} &

  • 프로세스를 실행하고 출력을 특정 파일에 기록:

nohup {{명령}} {{인수1 인수2 ...}} > {{경로/대상/출력_파일}} &