Versions Compared

Key

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

...


For example, in the statement:

Panel
COPY SRC=ABC/DEF*

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
COPY SRC=ABC/DEF*(*)



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

Panel
COPY SRC=ABC*/*(*)



In destination file specifications, wild cards are not allowed.

Examples

Panel
COPY SRC=ABC*/DEF*


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


Panel
COPY SRC=ABC/DEF(*)


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


Panel
DELETE SRC=MYLIB/MYFILE?


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


Panel
FORFILES SRC=*/*(*)


Lists all members in all files in all libraries.