Here’s the table of contents:

  1. Find the processes
  2. Find the processes and kill

Find the processes

ps aux | grep 'python -m joblib' | awk '{print $2}'

Find the processes and kill

kill -9 $(ps aux | grep 'python -m joblib' | awk '{print $2}')

See!