Explicitly note &&/|| as AND/OR operator in last post

This commit is contained in:
timvisee 2021-03-02 13:41:30 +01:00
parent 50983760de
commit 09268de46d
No known key found for this signature in database
GPG Key ID: B8DB720BC383E172
1 changed files with 2 additions and 2 deletions

View File

@ -49,8 +49,8 @@ Some of these are conditional and allow logical branching based on the success
state of the last run command.
We will just focus on these two logical operators:
- `&&`: run the following command if previous succeeded
- `||`: run the following command if previous failed
- `&&`: the AND operator, run the following command only if previous succeeded
- `||`: the OR operator, run the following command only if previous failed
## Exit codes
You might wonder how bash considers whether a command succeeded.