Changes

Execute Multiple BASH Shell Commands

815 bytes added, 21:02, 1 April 2014
The following lines were added (+) and removed (-):
(A) run several commands using the control operator ";" (semicolon) which will execute them sequentially.  The shell will wait for each command to terminate in turn. The return status is the exit status of the last command executed.(A) SEQUENTIAL: run several commands using the control operator ";" (semicolon) which will execute them sequentially.  The shell will wait for each command to terminate in turn. The return status is the exit status of the last command executed.(B) run several commands using the control operator "&" (ampersand)  (B) SIMULTANEOUS: run several commands using the control operator "&" (ampersand) which will allow executing of all commands simultaneously.  (C) run several commands using double ampersands(C) SEQUENTIAL CONDITIONAL: run several commands using double ampersands will prevent subsequent commands in the line from running of the preceding exits with exit status 1.  Use the double-ampersand operator in BASH will provide conditional execution.  Two commands separated by the double ampersands tells the shell to run the first command and then run the second command only if the first command succeeds with an exit status 0.  It will behave like example (A) in that the shell will wait for each command to terminate, with the exception that the command must terminate successfully to continue with the next.Hopefully this provides some basic clarification of how the bash shell handles multiple commands per line.[[Category:Computer_Technology]][[Category:Linux]]
Bureaucrat, administrator
16,192
edits