The best uses I’ve found for the SIGSTOP and SIGCONT signals are times when a process goes haywire, or when a script spawns too many processes at once.
Usage Examples for both signals:
1 2 | kill -SIGSTOP [pid] kill -SIGCONT [pid] |
The best uses I’ve found for the SIGSTOP and SIGCONT signals are times when a process goes haywire, or when a script spawns too many processes at once.
Usage Examples for both signals:
1 2 | kill -SIGSTOP [pid] kill -SIGCONT [pid] |
kill -SIGSTOP [pid] kill -SIGCONT [pid]