Answers for "run command in bash script in background"

2

bash run a command 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 "run command in bash script in background"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language