Do seu link:
até receber um sinal SIGCONT.
Então, seria kill -SIGCONT {pid}
-
killall -CONT bash
resumiria tudo. -
kill -18 {pid}
seria o mesmo. - e por isso é
kill -s CONT {pid}
De acordo com essa lista , ela deve ser control-z, mas é necessário usar control-z para parar o processo:
18 - SIGCONT - Resume process, ctrl-Z (2nd)
19 - SIGSTOP - Pause the process / free command line, ctrl-Z (1st)
Você precisa do {pid} da sessão do shell em execução no terminal
E há também comandos de controle de trabalho :
fg, bg
The fg command switches a job running in the background into the foreground.
The bg command restarts a suspended job, and runs it in the background.
If no job number is specified, then the fg or bg command acts
upon the currently running job.