We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Alternative approach to full on containers(?) maybe just send SIGSTOP to ‘pause’ a set of processes by process group ID
SIGSTOP
setsid <pgid> for each workspace then kill -STOP <pgid> to pause it then kill -CONT <pgid> to unpause)
setsid <pgid>
kill -STOP <pgid>
kill -CONT <pgid>
TODO: clarify if setsid is session ID (as name suggests) rather than process group id?
setsid
Good dive into process exploration with ps j -A
ps j -A
kill
pkill which takes -g argument for process group ID
pkill
-g