Created
October 18, 2013 18:21
-
-
Save DomiR/7045843 to your computer and use it in GitHub Desktop.
Terminal Tips
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
| # Terminal Ninja | |
| ###Processes | |
| ``` | |
| # Detach | |
| Cmd-z | |
| 1) run the "jobs" command to see a list of jobs you've got waiting. | |
| 2) run the "fg %#" command to bring a command back to active from the jobs list (use the number instead of the pound symbol). | |
| 3) run the "bg %#" command to let a job run in the background. | |
| 4) run the "kill %#" command to kill the job. | |
| Be sure to put the percent symbol before the jobs list number, it will use the process id. | |
| ``` | |
| Screen | |
| # Tasks | |
| ###Change SystemVersion | |
| ``` | |
| sudo vim /System/Library/SystemVersion.plist | |
| ``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment