in reply to Search pattern not terminated at warnings.pm line 508.

Great job guys!


Based on your comments I figured out that at the "exec" I was triggering the script using the default Perl installation on the system (/usr/bin/perl) instead of mine customized one and mixing up a Perl executable v5.8.4 and the Libraries of the v5.18.2. Changing the first line from:
#!/usr/bin/perl
To
#!/app/caapm/datapower/tools/localperl/bin/perl
All working now!
Thanks!!

Cheers,
Alexandre
  • Comment on Re: Search pattern not terminated at warnings.pm line 508.

Replies are listed 'Best First'.
Re^2: Search pattern not terminated at warnings.pm line 508.
by Anonymous Monk on Jun 26, 2014 at 01:23 UTC
    shebang is great, but perl is $^X :}