I want to find all processes beginning with the name 'Admin' and then do a grep count on those processes containing a specific string i.e. However, it is giving below error
ps -ef | grep ^Admin | grep -ic 'Jan' -e 'Feb' -e 'Mar'
grep: Jan: No such file or directory
I am able to get the lines themselves by using following command, which is successful. How to get the count of it?