seq 1 30 \ | perl -ple '$_.="\t"' \ | ruby -aple '$_+="Fizz" if $F[0].to_i % 3 == 0' \ | ruby -aple '$_+="Buzz" if $F[0].to_i % 5 == 0' \