Download code
From LiteratePrograms
Back to Fibonacci_numbers_(Sed)
Download for Windows: single file, zip
Download for UNIX: single file, zip, tar.gz, tar.bz2
fibonacci.sed
1 :F 2 s/11\(1*\)/1\1+\1/ 3 t F 4 5 s/+//g 6 7 s/^/ = / 8
Back to Fibonacci_numbers_(Sed)
Download for Windows: single file, zip
Download for UNIX: single file, zip, tar.gz, tar.bz2
1 :F 2 s/11\(1*\)/1\1+\1/ 3 t F 4 5 s/+//g 6 7 s/^/ = / 8