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 SkipVought 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
  • Order by date
  1. hacox

    Cannot run script from unix cron

    Never mind I found what I needed... use lib "$ENV{'HOME'}/lib";
  2. 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...
  3. hacox

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

    never mind I found it I forgot my $ sign...
  4. 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 ==...
  5. hacox

    What does $$ and $?>> do???

    $$ = process id of this script $? = status of last returned pipe I am not sure what the if($?>>8) means. Hope this helps.
  6. 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)
  7. hacox

    EDIINT - AS2

    The client I work for uses Cyclone for its AS2 communications. They have worked with Walmart and Meijer are 2 of the ones I am familiar with. I do know they are having problems using Cyclone to WebMethods. But, I am not aware of the details.
  8. hacox

    Secure Internet EDI

    Walmart and Meijer are definitly doing EDIINT today. The company I am contracting with has been working with them for several months on this conversion. We use Cyclone for the EDIINT communications between these TP.
  9. 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...
  10. 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