Hi Ken,

> Also, just thinking out loud; should the default maybe be
> "mhshow | sed -e 's/^/>/'"?

Probably more like

    /./s/^/ /
    s/^/>/

so you get output like

    $ seq 10 | sed '2~3s/.//' | sed '/./s/^/ /; s/^/>/' | sed -n l
    > 1$
    >$
    > 3$
    > 4$
    >$
    > 6$
    > 7$
    >$
    > 9$
    > 10$
    $

-- 
Cheers, Ralph.

Reply via email to