Skip to content

Instantly share code, notes, and snippets.

@samyranavela
Created December 31, 2014 23:46
Show Gist options
  • Save samyranavela/cf85c172cb8ac4a1db48 to your computer and use it in GitHub Desktop.
Save samyranavela/cf85c172cb8ac4a1db48 to your computer and use it in GitHub Desktop.
Shortcut to search a process by name
#!/bin/sh
# http://www.commandlinefu.com/commands/view/13947/shortcut-to-search-a-process-by-name
psg(){ ps aux | grep -v grep | egrep -e "$1|USER"; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment