Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Macro name changed from html to html-bobswift during server to cloud migration processing.

...


For example, in the statement:

Panel

Html bobswift

<pre>
COPY SRC=ABC/DEF*
</pre>

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:

Panel

Html bobswift

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

Panel

Html bobswift

<pre>
COPY SRC=ABC*/*(*)
</pre>


In destination file specifications, wild cards are not allowed.

Examples

Panel

Html bobswift

<pre>
COPY SRC=ABC*/DEF*
</pre>

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


Panel

Html bobswift

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

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


Panel

Html bobswift

<pre>
DELETE SRC=MYLIB/MYFILE?
</pre>

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


Panel

Html bobswift

<pre>
FORFILES SRC=*/*(*)
</pre>

Lists all members in all files in all libraries.