README.md: Added remark about ripgrep.

Signed-off-by: Andreas Hofmann <mail@andreas-hofmann.org>
pull/662/head
Andreas Hofmann 2020-02-17 16:14:55 +01:00
parent 84482aa24d
commit 4931752fb2
1 changed files with 2 additions and 0 deletions

View File

@ -105,6 +105,8 @@ Notes:
- Use `pgrep` and `pkill` to find or signal processes by name (`-f` is helpful).
- If you need to search through a large dataset, try [`ripgrep`](https://github.com/BurntSushi/ripgrep) instead of regular grep. While not fully posix compliant, most of the time it is much, much faster.
- Know the various signals you can send processes. For example, to suspend a process, use `kill -STOP [pid]`. For the full list, see `man 7 signal`
- Use `nohup` or `disown` if you want a background process to keep running forever.