vinforget has asked for the wisdom of the Perl Monks concerning the following question:
I get different behavior depending on what system I run it on. It runs fine on FreeBSD (4.5) perl 5.6.0, but fails on Gentoo, Perl5.8. Also, the file being fed through the script has been encoded (using uuencode or mimencode or mpack.. I tried them all) and sent to an email recipient on the BSD box. Bascially I have a script on the BSD box I want to migrate to Gentoo. This script takes a text file from an email attachment (previously encoded to compensate for Windoze ^M) and processes it. But whe I try to run the script on the Gentoo box I get a seg. fault. I think the problem is in the encoding so this may not be the forum to ask this question. If so, I apologize in advance. Thank you. Vincemy $str = join ('',my @temp = <>); while ($str =~ /^\#:lav\n(^(?!\#:eof\n).*\n)+/gm){ my ($val) = $&; print $val; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: weird perl verion and/or OS problem with newlines
by graff (Chancellor) on Sep 25, 2003 at 03:28 UTC | |
by vinforget (Beadle) on Sep 25, 2003 at 15:20 UTC | |
by tye (Sage) on Sep 25, 2003 at 16:02 UTC | |
|
Re: weird perl verion and/or OS problem with newlines
by asarih (Hermit) on Sep 24, 2003 at 20:51 UTC |