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: *

  1. dshaw21369

    java.util.Date

    I ended up doing the following and it works: java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyyMMdd" ); String sPaymentDueDate = INBOUND; java.util.Date CovertDate = sdf.parse(sPaymentDueDate); outboundsets(CovertDate); Thanks for all your help!
  2. dshaw21369

    java.util.Date

    I set the format to yyMMdd
  3. dshaw21369

    java.util.Date

    I tried the above code yesterday and got java.text.ParseException: Unparseable date: "20040218
  4. dshaw21369

    java.util.Date

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

    Hi, What is the syntax to search f

    Great!! Thanks!!!
  6. dshaw21369

    Hi, What is the syntax to search f

    what if I want to return all the files that contain the phrase?
  7. 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?
  8. dshaw21369

    DECODE FUNCTION

    Great thanks!
  9. dshaw21369

    DECODE FUNCTION

    I guess I'm trying to ask, can you call a procedure from the DECODE function.
  10. dshaw21369

    DECODE FUNCTION

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

    Have Problems adding an extension to files in a directory

    Thanks so much JR!! It worked!!!!
  12. 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...
  13. dshaw21369

    FTP using find command

    Here is the code: I would like to connect 1 time only because when running this code is opening and closing the connection for every file in the control file (the list of directories). any suggestions export TERM=vt100 CurrDate=`date +%Y%m%d%H%M%S` Logfile=/home/Log.$CurrDate...
  14. dshaw21369

    FTP using find command

    the problem I'm having is I have to get and put to specific directories.. so I was reading from a file that specifies these directories
  15. 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...
  16. 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...
  17. dshaw21369

    FTP UNIX Script

    Robert, what if I wanted to ftp multiple files in multiple directories.. how could I do this?
  18. dshaw21369

    /usr/ucb/cc: language optional software package not installed

    for this module I did not need a c compiler
  19. dshaw21369

    /usr/ucb/cc: language optional software package not installed

    My administrator had to install, I think I had permission issues more than anything. I sent him this link if he had questions or issues. http://www.perlmonks.org/index.pl?node_id=128077
  20. dshaw21369

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

    I Fixed it with this: ########################################## TIME STAMP INFORMATION ####################################### $yesterday = time() - 86400; # 86400 is num seconds in 1 day ($sec, $min, $hours, $day_of_month, $month, $year , $wday, $yday, $isdst) = localtime($yesterday)...

Part and Inventory Search

Back
Top