1

Add proc-grep

This commit is contained in:
Evan Pratten 2023-10-13 09:08:35 -04:00
parent f5553fc8fb
commit 47a2274375

View File

@ -158,3 +158,12 @@ wg-cat() {
sudo cat /etc/wireguard/$1.conf
fi
}
# Search for a process
proc-grep() {
if [ $# != 1 ]; then
echo "Usage: proc-grep <regex>"
else
ps aux | { head -1; grep $1 }
fi
}