-
-
Save padovah4ck/f8d8b10a4a2b76aec566f47cd735ef76 to your computer and use it in GitHub Desktop.
ippsec process monitor script
This file contains 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 | |
# Loop by line | |
IFS=$'\n' | |
old_process=$(ps aux --forest | grep -v "ps aux --forest" | grep -v "sleep 1" | grep -v $0) | |
while true; do | |
new_process=$(ps aux --forest | grep -v "ps aux --forest" | grep -v "sleep 1" | grep -v $0) | |
diff <(echo "$old_process") <(echo "$new_process") | grep [\<\>] | |
sleep 1 | |
old_process=$new_process | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment