#!/bin/bash #Turn around thing that looks nice echo "This is used as a basis for other things" #; exit 0 # Run a turner a1=""; a2="|"; a3="/"; a4="-"; a5="\\" #a1=""; a2="o"; a3="0"; a4="O"; a5="." #a1=""; a2="x"; a3="×"; a4="x"; a5="×" #a1=""; a2="> "; a3=" > "; a4=" > "; a5=" >" #a1=""; a2="~"; a3="-"; a4="_"; a5="." #a1=""; a2="°"; a3="¹"; a4="²"; a5="³" #a1=""; a2=". "; a3=" . "; a4=" . "; a5=" ." COUNTER=$a1 TURNER () { #The caracters if [ "$COUNTER" = "$a5" ] ; then COUNTER=$a1;fi if [ "$COUNTER" = "$a4" ] ; then COUNTER=$a5;fi if [ "$COUNTER" = "$a3" ] ; then COUNTER=$a4;fi if [ "$COUNTER" = "$a2" ] ; then COUNTER=$a3;fi if [ "$COUNTER" = "$a1" ] ; then COUNTER=$a2;fi printf " $COUNTER \r" } #The part of the script where it is used for I in `seq 600` do TURNER for J in `seq 5000` do a=a+1 a=1 done done