aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/pgrep.md
diff options
context:
space:
mode:
authorjohannst <johannes.stoelp@gmail.com>2020-04-19 22:13:44 +0200
committerjohannst <johannes.stoelp@gmail.com>2020-04-19 22:13:44 +0200
commitfef4d6ff2ad9f48e6dccde0f061453e6a3ac624e (patch)
treec21dfcf8e7c8895a94e1c72cb9588c94794656b1 /src/pgrep.md
parent43e402ba2320ced7972d33c9442b2745afe230f6 (diff)
downloadnotes-fef4d6ff2ad9f48e6dccde0f061453e6a3ac624e.tar.gz
notes-fef4d6ff2ad9f48e6dccde0f061453e6a3ac624e.zip
added new hierarchy
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)
-```