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: khalidmughal
  • Order by date
  1. khalidmughal

    Copying files (not directory)

    You can also use this command ls -et | grep "^-" | awk '{print$9}' | xargs -t -I {} cp {} backup By using this command only the files will copy into backup directory. Khalid Mahmood
  2. khalidmughal

    Calling a UNIX Shell Script from a Cobol program

    Try to use the following, hope it will solve your problem. WORKING-STORAGE SECTION. 01 WS-COMMAND-LINE. 03 WS-COMMAND-COM PIC X(25) VALUE "/test/glint/glint.sh ". 03 F PIC X(04) VALUE " " & X"00". PROCEDURE DIVISION. CALL...
  3. khalidmughal

    Calling a UNIX Shell Script from a Cobol program

    Try to use the following, hope it will solve your problem. WORKING-STORAGE SECTION. 01 WS-COMMAND-LINE. 03 WS-COMMAND-COM PIC X(25) VALUE "/test/glint/glint.sh ". 03 F PIC X(04) VALUE " " & X"00". PROCEDURE DIVISION. CALL...

Part and Inventory Search

Back
Top