> So I tried:
>   s/(.+)[ \t\n\r]*/$1/
> but those tricky little CR are still there. Even
>   s/(.+)[ \t\n\r\015]*/$1/
> still eludes me.

And then I tried:
  s/([^\n\r]+)[ \t\n\r]*$/$1/;
which does work, but seems overly finicky to get rid of BG's legacy. Is
there a better way?




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to