Skip to content

Instantly share code, notes, and snippets.

@DomiR
Created October 18, 2013 18:21
Show Gist options
  • Select an option

  • Save DomiR/7045843 to your computer and use it in GitHub Desktop.

Select an option

Save DomiR/7045843 to your computer and use it in GitHub Desktop.
Terminal Tips
# 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