1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 07:18:29 +01:00
tldr/pages/common/while.md

12 lines
213 B
Markdown
Raw Normal View History

2016-01-05 19:47:12 +01:00
# while
2016-01-13 12:04:46 +01:00
> Simple shell loop.
2016-01-05 19:47:12 +01:00
2016-01-13 12:04:46 +01:00
- Read stdin and perform an action on every line:
2016-01-05 19:47:12 +01:00
`while read line; do echo "$line"; done`
2016-01-13 12:04:46 +01:00
- Execute a command forever once every second:
2016-01-05 19:47:12 +01:00
`while :; do {{command}}; sleep 1; done`