APPEND[/qualifier[s]] infile[s] outfile /DATE:dd-mmm-yy /SINCE:dd-mmm-yy /THROUGH:dd-mmm-yy /SINCE:dd-mmm-yy/THROUGH:dd-mmm-yy /TODAY /EXCLUDE:filespec APPEND appends to an existing sequential file records from one or more sequential files. See also HELP CONVERT for nonsequential files. Example: >APPEND RAY.MAC,JAY.MAC LITE.MAC 2 DATE APPEND/DATE:dd-mmm-yy infile[s] outfile Specifies that the operation is limited to input files from the given date. Example: >APPEND/DATE:04-AUG-80 *.MAC PILL.MAC Appends all .MAC files created on that date to PILL.MAC. 2 SINCE APPEND/SINCE:dd-mmm-yy infile[s] outfile Specifies that the operation is limited to input files created on or after the given date. Can be combined with /THROUGH. See also HELP APPEND THROUGH. Examples: >APPEND/SINCE:04-AUG-80 *.*;* ROMEO.TXT Appends all files created on that date or since to ROMEO.TXT. >APPEND/SINCE:08-OCT-81/THROUGH:10-OCT-81 *.TXT SIMON.TXT Appends all files included in date range to SIMON.TXT. 2 THRU #THROUGH 2 THROUGH APPEND/THROUGH:dd-mmm-yy infile[s] outfile Specifies that the operation is limited to input files created on or before the given date. Can be combined with /SINCE. See also HELP APPEND SINCE. Examples: >APPEND/THROUGH:01-MAY-81 AURORA.* BOREALIS.SYM Appends all files named AURORA created on or since date to BOREALIS.SYM. >APPEND/SINCE:09-SEP-81/THROUGH:09-OCT-81 *.TXT RECORD.FIL Appends all .TXT files created within the date range to RECORD.FIL. 2 TODAY APPEND/TODAY infile[s] outfile Specifies that the operation is limited to input files created on the current date. Example: >APPEND/TODAY RAT.* TAR.RAT Appends all files named RAT created today to TAR.RAT. 2 EXCLUDE APPEND/EXCLUDE:filespec infile[s] outfile Specifies that the operation is to exclude the named file or files. Example: >APPEND/EXCLUDE:*.OBJ RAY.* VAC.FIL Appends all files named RAY except RAY.OBJ to VAC.FIL.