Horje
bash stop nohup job Code Example
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
Source: www.unix.com




Shell

Related
record audio with ffmpeg Code Example record audio with ffmpeg Code Example
Hay una opción git-merge seco-run Code Example Hay una opción git-merge seco-run Code Example
autostart service linux Code Example autostart service linux Code Example
install jq on ubunut Code Example install jq on ubunut Code Example
or create a self signed certificate openssl in csr Code Example or create a self signed certificate openssl in csr Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12