Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 프로그래머스 구명보트
- linux prompt color
- python3
- apt clean
- gnuplot csv
- 프로그래머스
- git commit message
- url reference
- vi/vim commands
- csv x range
- 프로그래머스 체육복
- Python Imaging Library
- vim set noshowmatch
- latex 첨자
- VirtualBox
- 프로그래머스 실패율
- vim 찾아 바꾸기
- Leetcode 121
- Climbing Stairs
- linux bash
- 걸쳐서 그림 넣기
- vim 치환
- apt autoremove
- Resolution Changing
- tensorflow model load
- Leetcode 70
- LaTeX figure
- vi/vim 명령어
- without nohup.out
- vim 괄호 비활성화
Archives
- Today
- Total
목록Programming/Linux (1)
기억노트
Linux 명령어 nohup(no hangup) 사용법 및 출력(nohup.out) 없이 실행하기
nohup nohup : no hangup 을 줄여 쓴 명령어 hang up (프로세스 중단) 을 무시하고 명령어를 실행시켜주는 명령어 $ nohup 실행 명령어 예시) $ nohup python3 code.py nohup 으로 명령어를 실행하면 'nohup.out' 이라는 출력 파일이 생성된다. 이 파일에는 해당 명령어가 실행되는 모든 출력이 저장된다. 출력(nohup.out) 없이 nohup 실행하기 nohup 으로 실행할 때 만들어지는 nohup.out 을 만들고 싶지 않을 때는 다음과 같은 방법을 사용할 수 있다. $ nohup 실행 명령어 1> /dev/null 2>&1 & 예시) $ nohup python3 code.py 1> /dev/null 2>&1 &
Programming/Linux
2019. 10. 5. 22:14