logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

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 stdin and 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

See Also