- jobs - list the current jobs
- fg - resume the job that's next in the queue
- fg %[number] - resume job [number]
- bg - Push the next job in the queue into the background
- bg %[number] - Push the job [number] into the background
- kill %[number] - Kill the job numbered [number]
- kill -[signal] %[number] - Send the signal [signal] to job number [number]
- disown %[number] - disown the process(no more terminal will be owner), so command will be alive even after closing the terminal.
- Reference
https://superuser.com/questions/268230/how-can-i-resume-a-stopped-job-in-linux
'Programming > Linux Coding' 카테고리의 다른 글
bash 쉘을 이용한 스크립트 만들기 #2 (0) | 2017.07.21 |
---|---|
bash 쉘을 이용한 스크립트 만들기 #1 (0) | 2017.07.21 |
리눅스 쉘 스크립트 (0) | 2017.07.19 |
시스템의 리틀/빅 엔디안 확인하기 (0) | 2017.03.28 |
volatile - 임베디드 및 멀티 쓰레드 환경에서 필요 (0) | 2017.01.06 |