for/if/while: add
This commit is contained in:
11
pages/common/while.md
Normal file
11
pages/common/while.md
Normal file
@@ -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`
|
Reference in New Issue
Block a user