Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


For example, in the statement:

<pre>
COPY SRC=ABC/DEF*
</pre>
Panel
Html bobswift

The wildcard only applies to the file portion of the name and an error will result because the user did not provide a member name.


To copy all of the files that begin with DEF, along with all of their members from library ABC, use the format:

html-bobswift
Panel
<pre>
COPY SRC=ABC/DEF*(*)
</pre>



Likewise, to copy all of the files and their members in libraries that begin with ABC, use the format:

<pre>
COPY SRC=ABC*/*(*)
</pre>
Panel
Html bobswift



In destination file specifications, wild cards are not allowed.

Examples

html-bobswift
Panel
<pre>
COPY SRC=ABC*/DEF*
</pre>


Copies all files beginning with DEF from all libraries beginning with ABC.


<pre>
COPY SRC=ABC/DEF(*)
</pre>
Panel
Html bobswift


Copies all the members in the physical file DEF in the library ABC.
 


html-bobswift
Panel
<pre>
DELETE SRC=MYLIB/MYFILE?
</pre>


Deletes all files in the library MYLIB starting with MYFILE and containing one additional character.


<pre>
FORFILES SRC=*/*(*)
</pre>
Panel
Html bobswift


Lists all members in all files in all libraries.