Merge f836747821
into 6b50745d2e
commit
4755fbaacd
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue