2

How can I delete the message of kill -9?

$ kill -9 PID
PID killed    Process_name

The result must be

$kill -9 PID
$
2

1 Answer 1

3

disown the pid/job:

disown $PID
kill -9 $PID
1
  • 2
    or set +m; kill -9 $PID; set -m, but you shouldn't use kill -9 to start with. Commented Mar 26, 2018 at 16:20

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.