Last active
July 10, 2016 15:31
-
-
Save bengolder/782895bec031911389c9 to your computer and use it in GitHub Desktop.
some useful bash commands that I only use occasionally
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
# 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