-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #605 from denis-sokolov/simple-sh-syntax
for/if/while: add
- Loading branch information
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# for | ||
|
||
> Shell loop over parameters | ||
- Perform a command with different arguments. | ||
|
||
`for argument in 1 2 3; do {{command $argument}}; done` | ||
|
||
- Perform a command in every directory. | ||
|
||
`for d in *; do (cd $d; {{command}}); done` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# if | ||
|
||
> Simple shell conditional | ||
- Echo a different thing depending on a command's success. | ||
|
||
`{{command}} && echo "success" || echo "failure"` | ||
|
||
- Full if syntax. | ||
|
||
`if {{condition}}; then echo "true"; else echo "false"; fi` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# while | ||
|
||
> Simple shell loop | ||
- Read stdin and perform an action on every line. | ||
|
||
`while read line; do echo "$line"; done` | ||
|
||
- Execute a command forever once every second. | ||
|
||
`while :; do {{command}}; sleep 1; done` |