pull/662/merge
Andreas Hofmann 2023-10-18 02:52:04 -03:00 committed by GitHub
commit 4755fbaacd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -105,6 +105,8 @@ Hinweise:
- Verwende `pgrep` und `pkill`, um Prozesse anhand eines Namens zu finden oder festzustellen (`-f` ist hilfreich).
- Wenn du eine große Datenmenge durchsuchen musst, versuche [`ripgrep`](https://github.com/BurntSushi/ripgrep) anstatt des normalen GNU grep. Es entspricht zwar nicht der POSIX-Spezifikation, ist in den meisten Fällen aber viel, viel schneller.
- Kenne die verschiedenen Signale, welche du Prozessen senden kannst. Um einen Prozess etwa zu unterbrechen, verwende `kill -STOP [pid]`. Für die vollständige Liste, siehe `man 7 signal`
- Verwende `nohup` oder `disown`, wenn du einen Hintergrundprozess für immer laufen lassen willst.

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.