tldr/pages/common/ps.md

28 lines
466 B
Markdown
Raw Normal View History

2013-12-08 12:56:16 +04:00
# ps
> Information about running processes.
2013-12-08 12:56:16 +04:00
- List all running processes:
2013-12-08 12:56:16 +04:00
`ps aux`
- List all running processes including the full command string:
`ps auxww`
2014-03-24 03:52:15 +04:00
- Search for a process that matches a string:
2014-03-24 03:52:15 +04:00
`ps aux | grep {{string}}`
2017-11-23 15:01:50 +03:00
- List all processes of the current user in extra full format:
2017-11-24 15:04:02 +03:00
`ps --user $(id -u) -F`
2017-11-24 14:50:38 +03:00
- List all processes of the current user as a tree:
2017-11-24 15:04:02 +03:00
`ps --user $(id -u) f`
2018-01-16 00:36:37 +03:00
2018-01-16 00:51:45 +03:00
- Get the parent pid of a process:
2018-01-16 00:36:37 +03:00
`ps -o ppid= -p {{pid}}`