2018-12-17 01:39:33 +00:00
while - perform a command multiple times
==========================================
2018-12-18 01:58:24 +00:00
Synopsis
--------
2018-12-16 21:08:41 +00:00
while CONDITION; COMMANDS...; end
2018-12-18 01:58:24 +00:00
2018-12-16 21:08:41 +00:00
2018-12-19 02:44:30 +00:00
Description
------------
2018-12-16 21:08:41 +00:00
2018-12-19 20:02:45 +00:00
`` while `` repeatedly executes `` CONDITION `` , and if the exit status is 0, then executes `` COMMANDS `` .
2018-12-16 21:08:41 +00:00
2018-12-19 20:02:45 +00:00
If the exit status of `` CONDITION `` is non-zero on the first iteration, `` COMMANDS `` will not be
executed at all, and the exit status of the loop set to the exit status of `` CONDITION `` .
2018-12-16 21:08:41 +00:00
The exit status of the loop is 0 otherwise.
2018-12-19 20:02:45 +00:00
You can use <a href="#and">`` and ` ` </a> or <a href="#or"> ` ` or ` ` </a> for complex conditions. Even more complex control can be achieved with ` ` while true `` containing a <a href="#break">break</a>.
2018-12-16 21:08:41 +00:00
2018-12-19 02:44:30 +00:00
Example
------------
2018-12-16 21:08:41 +00:00
2018-12-19 03:14:04 +00:00
::
while test -f foo.txt; or test -f bar.txt ; echo file exists; sleep 10; end
# outputs 'file exists' at 10 second intervals as long as the file foo.txt or bar.txt exists.