Last active
September 14, 2015 20:50
Bash function to print process info for matching process name
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
# psg NAME | |
function psg { | |
processes=$(pgrep $@) | |
if [ -z "$processes" ]; then | |
echo "No matches" | |
else | |
ps $processes | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example: