Skip to content

Instantly share code, notes, and snippets.

@bvanasse
Last active August 29, 2015 14:05
Show Gist options
  • Save bvanasse/cca287778859a4aedccc to your computer and use it in GitHub Desktop.
Save bvanasse/cca287778859a4aedccc to your computer and use it in GitHub Desktop.
Collection of helpful terminal commands
//PROCESS MANAGEMENT
//see all processes
# ps aux | less
//select all processes
# ps -A
//The top program provides a dynamic real-time view of a running system. Type the top at command prompt:
# top
// kill METEOR processes
kill -9 `ps ax | grep node | grep meteor | awk '{print $1}'`
//GIT COMMANDS
# git stash
//(To restore them type "git stash apply")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment