diff options
author | johannst <johannes.stoelp@gmail.com> | 2020-04-19 22:13:44 +0200 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2020-04-19 22:13:44 +0200 |
commit | fef4d6ff2ad9f48e6dccde0f061453e6a3ac624e (patch) | |
tree | c21dfcf8e7c8895a94e1c72cb9588c94794656b1 /src/pgrep.md | |
parent | 43e402ba2320ced7972d33c9442b2745afe230f6 (diff) | |
download | notes-fef4d6ff2ad9f48e6dccde0f061453e6a3ac624e.tar.gz notes-fef4d6ff2ad9f48e6dccde0f061453e6a3ac624e.zip |
added new hierarchy
Diffstat (limited to 'src/pgrep.md')
-rw-r--r-- | src/pgrep.md | 15 |
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) -``` |