I want to replace all instances of "\n<tab>" with "<tab>".
In other words, if a line starts with a tab, I want to
append it to the previous line.
">:sed 's/\n / / fn.old >
fn.new " does not work
because only one line is in the buffer.
A script file of
N
s/\n / /
does not wok either?
Help?