2016-01-05 18:47:12 +00:00
|
|
|
# while
|
|
|
|
|
2016-01-13 11:04:46 +00:00
|
|
|
> Simple shell loop.
|
2023-08-08 11:21:15 +01:00
|
|
|
> More information: <https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_09_04_09>.
|
2016-01-05 18:47:12 +00:00
|
|
|
|
2022-12-04 07:53:34 +00:00
|
|
|
- Read `stdin` and perform an action on every line:
|
2016-01-05 18:47:12 +00:00
|
|
|
|
|
|
|
`while read line; do echo "$line"; done`
|
|
|
|
|
2016-01-13 11:04:46 +00:00
|
|
|
- Execute a command forever once every second:
|
2016-01-05 18:47:12 +00:00
|
|
|
|
|
|
|
`while :; do {{command}}; sleep 1; done`
|