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!

Recent content by RayC87

  1. RayC87

    com.ibm.network.ftp

    I found this on the javasoft site: import java.io.*; import com.oroinc.net.ftp.*; public class JFTP { public static void get(String hostname, String filename) { FTPClient client; client = new FTPClient(); try { client.connect(hostname)...
  2. RayC87

    Can't run Journal Import

    Are you initiating the journal import from the Application or via CONCSUB?
  3. RayC87

    Adding data to a flat file from ksh (maybe using awk)

    Greg, Thanks for that. I'm off to buy myself an AWK reference manual! This has been my first time using tec-tips and it's really helped. Thanks again Ray :->
  4. RayC87

    Adding data to a flat file from ksh (maybe using awk)

    KP, Thanks alot that has been really helpful. FILENAME adds the full path along with the actual file name into the file could you give me an example where the filename is passed to awk via a ksh variable. I appreciate your help with this as I have already wasted half a day trying to sort this...
  5. RayC87

    Adding data to a flat file from ksh (maybe using awk)

    This is all new to me so any help would be greatly appreciated I need to be able to add a value to a specific line of a data file. The file looks like: a 123 345789 b 234 678909 iuy b 234 678909 jhg b 234 678909 nbv c 321 097876 And I need to add the filename to the row starting with 'c'(the...

Part and Inventory Search

Back
Top