aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/pgrep.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/pgrep.md')
-rw-r--r--src/pgrep.md15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/pgrep.md b/src/pgrep.md
deleted file mode 100644
index 2b52a73..0000000
--- a/src/pgrep.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# pgrep(1)
-
-```markdown
-pgrep [opts] <pattern>
- -n only list newest matching process
- -u <usr> only show matching for user <usr>
- -l additionally list command
- -a additionally list command + arguments
-```
-
-## Debug newest process
-For example attach gdb to newest zsh process from `$USER`.
-```markdown
-gdb -p $(pgrep -n -u $USER zsh)
-```