Browse Source

fix: branch conditional

pull/7/head
Carlos Alexandro Becker 5 years ago
committed by GitHub
parent
commit
23458cd9a1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      README.md

+ 2
- 1
README.md View File

@@ -632,7 +632,8 @@ unset HISTFILE && exit
###### Perform a branching conditional

```bash
true && { echo success;} || { echo failed; }
true && echo success
false || echo failed
```

###### Pipe stdout and stderr to separate commands


Loading…
Cancel
Save