I will be running a list of processes that will have the following naming conventions:
a_feed
b_feed
c_feed
...
I have written a bash shell script that will allow me to filter out the processes with these naming patterns. Please look at the one line in my shell script below:
ps -ef | grep -i *_feed | grep -v grep | awk '{print $2, " ", $8, " ", $10}'
For some reason, grep -i *_feed is unable to find any process that conforms to the pattern *_feed.
Does anyone have any ideas why?
Thanks.