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
- Climbing Stairs
- 프로그래머스 실패율
- LaTeX figure
- 프로그래머스 체육복
- without nohup.out
- csv x range
- vim 찾아 바꾸기
- latex 첨자
- Leetcode 70
- 프로그래머스
- apt autoremove
- vim 괄호 비활성화
- python3
- Leetcode 121
- Python Imaging Library
- 프로그래머스 구명보트
- vi/vim commands
- apt clean
- url reference
- vim set noshowmatch
- vi/vim 명령어
- linux bash
- VirtualBox
- git commit message
- 걸쳐서 그림 넣기
- tensorflow model load
- vim 치환
- linux prompt color
- gnuplot csv
- Resolution Changing
Archives
- Today
- Total
목록command (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