Skip to content

Instantly share code, notes, and snippets.

@valentindavid
Created January 3, 2015 22:35
Show Gist options
  • Save valentindavid/bb5e2061d8f175f7d817 to your computer and use it in GitHub Desktop.
Save valentindavid/bb5e2061d8f175f7d817 to your computer and use it in GitHub Desktop.
fizzbuzz.sed
#!/bin/sed -f
s/^$/1/
:l
h
y/0123456789/0120120120/
:r
s/0//g
s/12//
s/21//
s/22/1/
s/11/2/
/../br
/^$/s//Fizz/
s/^[1-2]//
G
s/\n//
/[05]$/s/[0-9]*$/Buzz/
/^[^0-9]/s/[0-9]*$//
p
g
s/^.*\(.\)$/\1/
y/0123456789/123456789a/
x
s/.$//
G
s/\n//
:a
s/^a/10/
/a/!bb
s/\([0-9]\)a/:\1:/
h
s/[^:]*://
s/:[^:]*//
y/0123456789/123456789a/
x
G
s/:.:\(.*\)\n\(.\)/\20\1/
ba
:b
/101/!bl
Q
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment