On 6/4/07, jrpfinch <[EMAIL PROTECTED]> wrote:
/usr/local/bin/perl -e "use PAR; use lib "a.par"; use SetSQL;"
Can't locate script/SetSQL.pm in @INC (@INC contains: apar
Hm. One says "a.par" and one says "apar". That's a clue: Your shell is confused by those four double quote marks, and it's not doing what you think you're asking of it. Quoting in the shell has lots of tricks. Maybe you want something like this? /usr/local/bin/perl -e 'use PAR; use lib q(a.par); use SetSQL;' Hope this helps! --Tom Phoenix Stonehenge Perl Training -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/