On Tue, 09 Apr 2002 09:54:45 -0700, "Steve Juranich" <[EMAIL PROTECTED]> said: > First thing, please use word-wrap on your mail client (including replies is > much easier this way).
Sorry about that, I didn't know (and haven't gotten any such complaints before). My "mail client" is a Web interface created by my e-mail service. I therefore don't have much control over how it sends out wrapped text, I think, but let me try this and maybe you'll be so kind as to tell me if it works better for you (I ran my text through a filter I wrote* after composing it, and then re-pasted it into the interface field). This is hardly a situation unique to me (i.e., S_*t Happens ... in my case, because of my problems setting up Debian I've been stuck on W98 for a long time... and many things are 'just getting by' style instead of 'optimal' .. like finding a good IMAP email client to use in a nice graphical environment). Also I've found it necessary to cope with badly wrapped text to be quoted often before, and so I'll post my filter at this msg bottom for anyone to use that finds it helpful. > Secondly, all that the kernel is saying is that it's time to run 'fsck'. > Type > 'man fsck' for more. `man' is hosed on my Debian system. When logged in as root and I try `man' or `info' I get "execv: permission denied" error. It seems there's is so much that can go wrong with Linux... Thanks, Soren Andersen -------- begin script inclusion, watch for miswrapping and low-flying owls -------- #!/usr/bin/perl # ------------------------------------------------------------------- # "eml-quot" (c)2000, 2001, 2002 Soren Andersen, All Rights Reserved. # This program is available for use under the same terms as Perl. # ------------------------------------------------------------------- use Text::Autoformat; use Getopt::Std; getopt('lrqp'); $leftmarg = ($opt_l)? $opt_l : 1; $rightmrg = ($opt_r)? $opt_r : 72; $opt_p = ($opt_p and $opt_p == 0)? 0 : 1; $qsert = ($opt_q)? '> ' : ''; my @txt = map{$_= (/^\>/ and !$opt_q)? $_ : $qsert.$_;}(split qq[\n], autoformat( join( q[], (<STDIN>) ), { left=>$leftmarg, right=>$rightmrg, all=>$opt_p }) ); print join qq[\n],'',@txt,q[]; __END__ Sample usage: bash$ eml-quot -q -r 70 OR (for people working on 'doze especially): bash$ [perl -S] eml-quot -q -r 70 |gclip (`gclip' is a clipboard program available on the Net. Google it.) -------- end low-flying owl- and miswrapping- watch ---------------------------------- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]