RosettaCodeData/Task/Increment-a-numerical-string/Sed/increment-a-numerical-string.sed
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

12 lines
163 B
Sed

s/^.*$/&:/
:bubble
s/^:/1/
/.:/ {
h
s/^.*\(.\):.*$/\1/
y/0123456789/123456789:/
s/:/:0/
G
s/\(.*\)\n\(.*\).:\(.*\)$/\2\1\3/
b bubble
}