How to get information about the currently running processes in Linux?
Command:-
ps auxww | grep <process name> (It gives the full listing of the process (long listing)).
To know the count of remote processes, type the command below:
ps auxww |grep 'remote' | wc -l
No comments