egunnar has asked for the wisdom of the Perl Monks concerning the following question:
thanks, erik#!/usr/bin/perl -w #require 'mylib.pl'; print "\n\n", "\@INC is :\n"; for (@INC){print "$_\n";}; BEGIN{ unshift @INC, "/usr/local/lib/perl5/site_perl/5.8.4/i686-linux"; unshift @INC, "/usr/local/lib/perl5/site_perl/5.8.4/i686-linux/auto"; } use strict; use Convert::IBM390 qw(); #use Convert::IBM390 qw(:all); #my @in =<>; #print eb2asc(@in);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: including .so files
by Zaxo (Archbishop) on May 20, 2005 at 20:57 UTC | |
|
Re: including .so files
by VSarkiss (Monsignor) on May 20, 2005 at 21:40 UTC | |
|
Re: including .so files
by zentara (Cardinal) on May 21, 2005 at 11:26 UTC |