Created
January 25, 2016 15:32
-
-
Save erayarslan/26160d6c29ab2bfa1d17 to your computer and use it in GitHub Desktop.
cute process
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment