I need to get a list of all running PHP scripts but piping PS thru grep just gives me a list of all references to PHP files
How do I accomplish this? Is this even possible?
root@myhost:/var/www/cron/jobs# ps -ef | grep *.php | grep -v grep
THANKS!