1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 01:18:00 +01:00
tldr/pages/common/ps.md

16 lines
238 B
Markdown
Raw Normal View History

2013-12-08 09:56:16 +01:00
# ps
> Information about running processes.
2013-12-08 09:56:16 +01:00
- List all running processes:
2013-12-08 09:56:16 +01:00
`ps aux`
- List all running processes including the full command string:
`ps auxww`
2014-03-24 00:52:15 +01:00
- Search for a process that matches a string:
2014-03-24 00:52:15 +01:00
`ps aux | grep {{string}}`