Reformatted pages once more

This commit is contained in:
Ruben Vereecken
2016-01-13 12:04:46 +01:00
parent c9d0ed3e16
commit 9676334119
16 changed files with 61 additions and 61 deletions

View File

@@ -1,11 +1,11 @@
# while
> Simple shell loop
> Simple shell loop.
- Read stdin and perform an action on every line.
- Read stdin and perform an action on every line:
`while read line; do echo "$line"; done`
- Execute a command forever once every second.
- Execute a command forever once every second:
`while :; do {{command}}; sleep 1; done`