| Raw Input
| This line is longer than 25 characters...
This-should-not-be-split-into-two-lines.
Ok, try this one. This should be spilt...
|
|
| Desired Output
| This line is longer than
25 characters...
This-should-not-be-split-into-two-lines.
Ok, try this one. This
should be spilt...
|
|
Script and Comments
Script1 [ 1] /.\{26\}/!b
[ 2] s/^\(.\{1,25\}\) /\1\n /
[ 3] s/^\(.\{1,24\}\)\n /\1 \n/
[ 4] /\n/!s/ /\n /
[ 5] P
[ 6] D
| |
|