On 6/29/07, Alex Jamestin <[EMAIL PROTECTED]> wrote:
Sorry forgot about that.. I'm running it on FreeBSD/i386 accessed via.
a terminal prog.

I have a FreeBSD box handy, but I cannot reproduce your error.  Do the
two scripts below work for you?

/home/cowens>uname -smr
FreeBSD 4.11-STABLE i386
/home/cowens>cat t.pl
#!/usr/bin/perl

system("perl f.pl foo bar baz") == 0
   or die "perl blew up: $!";
/home/cowens>cat f.pl
#!/usr/bin/perl -l

print map { "[$_] " } @ARGV;
/home/cowens>perl t.pl
[foo] [bar] [baz]

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to