Skip to content

Instantly share code, notes, and snippets.

@bengolder
Last active July 10, 2016 15:31
Show Gist options
  • Save bengolder/782895bec031911389c9 to your computer and use it in GitHub Desktop.
Save bengolder/782895bec031911389c9 to your computer and use it in GitHub Desktop.
some useful bash commands that I only use occasionally
# checkout where a network connection is routed
traceroute [some address]
# see all the user accounts
cat /etc/passwd
# see all the processes
ps aux
# see running processes
top
# find a process id
grep process_search_term
# stop a process
kill <pid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment