====== Bash (Bourne Again SHell) ====== * [[scripting:bash:links|Links]] ===== Quiet Job-Control ===== Example of a command execution: # sleep 1 # sleep 1 & [1] 31358 # [1]+ Done sleep 1 To prevent the whole job control output, execute the task in a subshell: # (sleep 1 &) Or if there are multiple commands: # ((sleep 1; sleep 1 )&)