-
-
Save christian-fei/c04c25a303a0e98336a4 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
while true | |
do | |
clear | |
echo "=====================================================" | |
ps ax | grep $1 | grep -v grep | grep -v "mp " | |
echo "=" | |
ps ax | grep $1 | grep -v grep | grep -cv "mp " | |
echo "====================================================="; | |
echo "Press ctrl+c to stop" | |
sleep 1 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment