Bash Stop Nohup Job
# Basic syntax:
ps -ef | grep nohup
kill -9 job_PID
# Where:
# - ps reports a snapshot of the current processes
# - -e selects all processes
# - -f list additional fields including PID
# - kill -9 stops the process and cannot be blocked
# Example usage:
ps -ef | grep nohup
--> croy 46576 45095 0 16:14 pts/19 00:00:00 ...
kill -9 46576
Charles-Alexandre Roy