December 2015
Beginner
306 pages
5h 2m
English
Let's now take a look at logical operators.
The first command is started in the background to continue until it has finished; immediately after starting first command, the second command is started and it will run in the foreground:
$ find / -name "*.z" & s ---------------- ----- Command1 command2
In the preceding example, first command such as find will start running in the background and while the find command is running in background, the ls command will start running in foreground.
The second command is only started if the first command is successful. To achieve this, the shell checks the exit (return) status of the first command and starts the second command only if and when that exit ...