RosettaCodeData/Task/Increment-a-numerical-string/Sed/increment-a-numerical-string.sed

13 lines
163 B
Sed
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
s/^.*$/&:/
:bubble
s/^:/1/
/.:/ {
h
s/^.*\(.\):.*$/\1/
y/0123456789/123456789:/
s/:/:0/
G
s/\(.*\)\n\(.*\).:\(.*\)$/\2\1\3/
b bubble
}