While Loop - Control Command Execution | Online Free DevTools by Hexmos
Control command execution with While Loop. Automate repetitive tasks and create conditional execution flows using shell scripting. Free online tool, no registration required.
while
Simple shell loop that repeats while the return value remains zero. More information: https://www.gnu.org/software/bash/manual/bash.html#index-while.
- Read
stdinand 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
- Execute a command until it fails:
while {{command}}; do :; done