Find and stop linux processes Jun 7, 2021 Here’s the table of contents: Find the processes 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!