September 2018
Beginner
186 pages
4h 30m
English
You can send an interactive command line with more than one simple command in it, separating them with a semicolon, one of several possible control operators. Bash will then execute the commands in sequence, waiting for each simple command to finish before it starts the next one. For example, we could write the following command line and issue it in an interactive Bash session:
$ cd ; ls -a ; mkdir New
For this command line, note that even if one of the commands fails, Bash will still keep running the next command. To demonstrate this, we can write ...
Read now
Unlock full access