I have a production database(9.2.0.6). that is backed up using RMAN nocatalog. The user want me to take a backup off of tape from June 21st and recreate in development (different directory structure). I can't seem to be able to find exactly how to do that. Can anyone give me a link?

rman target=/ << EOF >>${shlog} 2>&1
RUN {
shutdown immediate
startup mount
CONFIGURE CONTROLFILE AUTOBACKUP ON;
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '$BKUPDIR/cf_%d_%F';
CONFIGURE DEFAULT DEVICE TYPE TO DISK;
CONFIGURE DEVICE TYPE DISK PARALLELISM 1;
CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT = '$BKUPDIR/df_%d_%Y%M%D_%s';
CONFIGURE RETENTION POLICY TO REDUNDANCY 2;

# Back up all critical tablespaces using Incremental Level 0 - Cumulative.
BACKUP INCREMENTAL LEVEL 0 CUMULATIVE
(
DATABASE
);

# Back up all archived redo logs that have not yet been backed up
# at least twice to the same device
BACKUP ARCHIVELOG ALL
NOT BACKED UP 2 TIMES;

# Delete all archived redo logs that have already been backed up at least twice
# to the same device
DELETE NOPROMPT ARCHIVELOG ALL
BACKED UP 2 TIMES
TO DEVICE TYPE DISK;
DELETE NOPROMPT OBSOLETE REDUNDANCY 2;
}
alter database open;
list backup summary;
EXIT;