Answers for "linux run a program in the background"

1

linux run a program in the background

# Basic syntax:
your_command & # or:
nohup your_command &
# Note, if you want to stop the job, run top or ps to get the process ID (PID)
#	and then run kill PID
Posted by: Guest on January-18-2022

Code answers related to "linux run a program in the background"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language