× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Hello all!

I have a CL program that executes the following
QSH CMD('jar -cfM /JOHN/TESTZIP1.ZIP /JOHN/TESTZIP1.PDF')
and it works fine.

I changed the CL to remove the hard coded file names:

DCL VAR(&PDFFILE) TYPE(*CHAR) LEN(50) VALUE('/JOHN/TESTZIP1.PDF')
DCL VAR(&ZIPFILE) TYPE(*CHAR) LEN(50) VALUE('/JOHN/TESTZIP1.ZIP')
DCL VAR(&CMD)     TYPE(*CHAR) LEN(256)
DCL VAR(&SQUOTE)  TYPE(*CHAR) LEN(1) value('''')   

CHGVAR     VAR(&CMD) VALUE(&SQUOTE *TCAT 'jar -cfM' *BCAT &ZIPFILE *BCAT
&PDFFILE *TCAT &SQUOTE)
                                   
QSH        CMD(&CMD)

ENDPGM

In debug the variable &CMD shows a value of 
'jar -cfM /JOHN/TESTZIP1.ZIP /JOHN/TESTZIP1.PDF'
(includes the singles quotes)

But this method fails with message
qsh: 001-0014 Command jar -cfM /JOHN/TESTZIP1.ZIP /JOHN/TESTZIP1.PDF not
found.                                                             

These test are being run interactively, I can't seem to see a difference
between the two.

Anyone have any suggestions?

John




As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.