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 bkrike 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: dshaw21369
  • Content: Threads
  • Order by date
  1. dshaw21369

    java.util.Date

    How do I convert java.lang.string Date to java.util.Date using the format YYMMDD?
  2. dshaw21369

    Hi, What is the syntax to search f

    Hi, What is the syntax to search for a phrase inside of a file? for example if I want to search for First name in several files in on the server under root?
  3. dshaw21369

    DECODE FUNCTION

    Hi, Can you call a procedure when returning value using the DECODE function?
  4. dshaw21369

    Have Problems adding an extension to files in a directory

    I'm Trying add an .edi extenion to the file that originally looks like this: i.gtp.030206065504 I would like it to look like this: i.gtp.030206065504.edi When using this code Im getting the error: Cannot rename *gtp.* to *gtp.*edi: This is my code: OLDSUFFIX= NEWSUFFIX=edi for FILES in...
  5. dshaw21369

    FTP using find command

    Hi, I'm new to unix and I'm was wondering if anyone might know how to do the following: 1.find files with *in extension in over 20 directories on Server A 2.FTP these files to 20 seperate directories on to Server B (where the script is running) I'm interested in using the find command if I...
  6. dshaw21369

    FTP

    Hi, I'm new to unix and I'm was wondering if anyone might know how to do the following: 1.find files with *in extension in over 20 directories on Server A 2.FTP these files to 20 seperate directories on to Server B (where the script is running) I'm interested in using the find command if I...
  7. dshaw21369

    Trying Email an Attachment with the File name that is Yesterdays date

    I'm Sending an html attachment using MIME:LITE and the email is sending an attachment however the html attachment displays all the file names in the directory rather than the html contents. My Ultimate Goal is to attach an html file with yesterdays date. Any Suggestions? Here is my code...
  8. dshaw21369

    I get an error saying "Can't find make"

    I'm Installing a perl Module and was wondering if anyone had this executable?
  9. dshaw21369

    Need help with Printing Problem

    I have been struggling with this issue for a while and need help; I'm tring to print 3 collumns vertically in the following order: @cobol_out_circ_id_2 @section_count2 @chunks Here is my code: foreach $cobol_out_record(@uniq_cobol_out) { $cobol_out_snapshot=...
  10. dshaw21369

    kill -9

    is the kill -9 dangerous to use? If so why?
  11. dshaw21369

    Extract 5 bytes at a time

    I' m fairly new to Perl, and what Im trying to do is : 1. Loop through each line of an array 2. Extract five bytes at a time 3. Store 4. add a space b/w five byte each line contains: 30130301313G11341669416864168741783418664509A want to accomplish: 30130 30131 3G113 41669 41686 41687 41783...
  12. dshaw21369

    Layout of Text

    How do I make this data that looks like this: IND01 IND02 IND03 To look like this? IND01 IND02 IND03
  13. dshaw21369

    Run Script every 4 minutes

    I would like to run a script every four minutes this does not work any suggestions? 4 * * * * /export/home/egate/Perl_Development/monitor_log.pl > /dev/null 2>&1 04 * * * * /export/home/egate/Perl_Development/monitor_log.pl > /dev/null 2>&1
  14. dshaw21369

    Not Receiving Mail

    I'm trying to send an email to myself with the code shown below. and I verified the location of send mail and Im still not receiving emails any suggestions? open (MAIL, "|/usr/lib/sendmail -oi -t -odq") || die "cant use mail send"; print MAIL "from...
  15. dshaw21369

    How do I search for a string in a log file?????

    I'm wanting search for the string "Rollback", if I see the string send an email with a message. #!/usr/bin/perl @XML_COBOL_LOG =(); $Rollback ="Rollback"; #Open Debug unless (open (Debug,">/export/home/egate/Perl_Development/Debug.txt")) { print "Debug.txt...
  16. dshaw21369

    Installing Perl Modules on Solaris 8

    Our Unix Administrator installed ActivePerl-5.8 in the following directory /usr/local/ActivePerl-5.8 I have installed the MIME:LITE module in the direcotry /export/home/egate/.cpan/CPAN/MIME-Lite-2.117.tar I'm not sure what I need to configure now to make my program work and know whether I...
  17. dshaw21369

    Perl Module Installation

    I wanted to Install MIME:LITE on Solaris 8 and was wondering if anyone knew If I needed a C compiler to do this?
  18. dshaw21369

    Installing Perl Modules on Solaris 8

    Has anyone installed a Perl Module before? Is a C compiler always required. Im trying to Install MIME: LITE and during installation I noticed that the make program is not anywhere to be found on our Solairs 8 box. What are the steps that needs to be taken for our Administrator to install this...
  19. dshaw21369

    Sent HTML attachment with out using MIME:LITE

    I have had lots of problems with installation of MIME:LITE (the make program is not available on our server), and Im frusturating our Unix admin. I want to know if there is an easier way to sent an email with an HTML attachment. Thanks.
  20. dshaw21369

    Need assistance on the OR statement

    I'm trying to view all xml messages that do not have the task of "XT" or "XF" and store them in an array. How can I use an OR statement and get the xml messages with out the task of "XT" or "XF". This code below is giving me everything and not taking out...

Part and Inventory Search

Back
Top