less than 1 minute read

만약 일반적인 출력과 에러 메세지를 하나의 파일에 저장되도록 하려면 다음과 같이 하면 된다.

nohup script >script.out 2>&1 &

output을 저장하고 싶지 않을 때도 있다. 그럴때는 아래와 같이 /dev/null 로 출력을 redirect 하면 된다.

nohup script >/dev/null 2>&1 &

Categories:

Updated: