Skip to content

Instantly share code, notes, and snippets.

@donatj
Last active December 15, 2015 07:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save donatj/5224428 to your computer and use it in GitHub Desktop.
Save donatj/5224428 to your computer and use it in GitHub Desktop.
Stupid Bash Script
for (( ; ; ))
do
yes '-' | head -n$(($LINES * $COLUMNS)) | tr -d '\n'
sleep .3
yes '/' | head -n$(($LINES * $COLUMNS)) | tr -d '\n'
sleep .3
yes '|' | head -n$(($LINES * $COLUMNS)) | tr -d '\n'
sleep .3
yes '\' | head -n$(($LINES * $COLUMNS)) | tr -d '\n'
sleep .3
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment