Skip to content

Instantly share code, notes, and snippets.

@eveadele
Created September 19, 2014 16:25
Show Gist options
  • Save eveadele/55a9b0e841c02b395fdc to your computer and use it in GitHub Desktop.
Save eveadele/55a9b0e841c02b395fdc to your computer and use it in GitHub Desktop.
Useful Shell Script
echo "How many inches?"
read inches
echo "Okay"
echo -n "8"
sleep .5
number=0
until [ "$number" -ge $inches ]; do
echo -n "="
sleep .2
number=$((number + 1))
done
echo "D\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment