Skip to content

Instantly share code, notes, and snippets.

@nabinno
Created September 15, 2014 14:53
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 nabinno/794c16d36f4213b073d3 to your computer and use it in GitHub Desktop.
Save nabinno/794c16d36f4213b073d3 to your computer and use it in GitHub Desktop.
for i in {1..100};
do;
case $(($i%3)) in;
0)echo Fizz;
case $(($i%5)) in;
0)echo Buzz;;
esac;;
*)echo $i;;
esac;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment