Skip to content

Instantly share code, notes, and snippets.

@teramako
Created August 9, 2012 06:45
Show Gist options
  • Save teramako/3301751 to your computer and use it in GitHub Desktop.
Save teramako/3301751 to your computer and use it in GitHub Desktop.
FizzBuzz
seq 100 | perl -nle 'print (($_%3?"":"Fizz").($_%5?"":"Buzz")||$_);'
seq 100 | sed -e'0~3s/^.*/Fizz/' -e'0~5s/[0-9]*$/Buzz/'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment