How can I delete the message of kill -9?
$ kill -9 PID
PID killed Process_name
The result must be
$kill -9 PID
$
How can I delete the message of kill -9?
$ kill -9 PID
PID killed Process_name
The result must be
$kill -9 PID
$
disown the pid/job:
disown $PID
kill -9 $PID
set +m; kill -9 $PID; set -m
, but you shouldn't use kill -9
to start with.
– Kusalananda
Mar 26 '18 at 16:20