In Linux, grep can be used to sort running processes via the terminal or command line. It can easily be done by typing ps ax then pipe grep and the filter parameters. Example: ps ax | grep "mail*" It will search for any proccess that its name starts with mail. In Windows sorting running processes can also be done using command line. Using the command prompt window, by typing "tasklist" the command will show all running process or services. Depends on your environment and running processes working on the background, it will either show more or less output. To sort the output, it needs to pipe tasklist output to another command which is "findstr.exe". Type this command below on the command prompt window to sort the output. tasklist | findstr /b "c" It will sort the tasklist output for any running processes that starts with letter "c", like chrome.exe cmd.exe, csrss.exe etc. If need to...
Make the world a better place by sharing knowledge, ideas and anything that you can give that comes from the heart.