Here is a nice little handy function that I use very regurlarly.
You can use this function with parameter to just grep for that or just type psa to see all the running processes.
Just put this in your .bashrc file.
You might find it useful:
psa () { if [[ $1 == "" ]]; then ps -eaf; else ps -eaf | grep --color=auto -i $1; fi }
Link to this post!
You must log in to post a comment.