Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: hacox
  • Content: Threads
  • Order by date
  1. hacox

    Cannot run script from unix cron

    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...
  2. hacox

    Can't locate object method quit via package "ftp"

    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 ==...
  3. hacox

    Time?

    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)
  4. hacox

    Metacharacters in file names

    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...
  5. hacox

    Max. group size

    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?

Part and Inventory Search

Back
Top