Reputation: 1
I'm new in PHP. I'm following PHP with MySQL Beyond the basics Lynda tutorial. They used another command line environment on mac OS. But I'm using Windows powershell. They run the command ps aux grep httpd
on those environment. Which is not for windows powershell.
What is the alternate windows power shell command for ps aux grep httpd
?
Upvotes: 0
Views: 389
Reputation: 6571
Use the get-process
cmdlet
get-process httpd
You can also use wildcards. For example, if you want all the process names that begin with h:
get-process h*
Upvotes: 1