Carlos Alexandro Becker
5 лет назад
committed by
GitHub
Родитель
Сommit
23458cd9a1
Не найден GPG ключ соответствующий данной подписи
Идентификатор GPG ключа: 4AEE18F83AFDEB23
1 измененных файлов:
2 добавлений и
1 удалений
-
README.md
|
|
@@ -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 |
|
|
|