Skip to content

Instantly share code, notes, and snippets.

@bialikover
Created July 24, 2012 21:57
Show Gist options
  • Save bialikover/3172936 to your computer and use it in GitHub Desktop.
Save bialikover/3172936 to your computer and use it in GitHub Desktop.
loop bash
COUNTER=0
while [ $COUNTER -lt 10 ]; do
echo The counter is $COUNTER
let COUNTER=COUNTER+1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment