the-art-of-command-line
the-art-of-command-line copied to clipboard
Consider adding killing by jobid
When [CTRL]+[C]
does not work I'm dumping job to background by [CTRL]+[Z]
and then I'm killing it by kill -9 %1
where 1
is job number.