I am receiving this error message when I run my script from cron.
Can't locate mskUtil.pm in @INC (@INC contains: /usr/perl5/5.00503/sun4-solaris
/usr/perl5/5.00503 /usr/perl5/site_perl/5.005/sun4-solaris /usr/perl5/site_perl/
5.005 .) at /export/home/entDEV/bin/unloadSDB.pl line 35.
BEGIN...
I am receiving this error message for the ftp->quit() command in this script. I have checked the versions of the FTP module and they are the same as what it is cpan.org. What else can I check to fix this?
Thanks!
use Net::FTP;
$ftp = Net::FTP->new($server); # contact server
if ($ftp ==...
Code:
use Time::localtime;
@list=localtime();
print "@list\n";
I just started a new job and I am trying to work with localtime and I am getting strange output. Why am I getting this output?
Time::tm=ARRAY(0x2f8dc)
We receive files with metacharacters in the file names that are probably coming from a Windows environment. An example would be ORDERS'UNH.dat, I am using this command to replace the metacharacters with an underscore.
$file_name=~s/(\W)/_/g;
I have to replace the ' in this case...
We have a user that belongs to 23 groups and the max. group size on our system is 20. So, the last 3 groups are not recognized group members for the user. Does anyone know how to expand the max. group size?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.