I want to back up the IFS (except QSYS and QDLS). I have seen 2 different commands that say they will back up everything except QSYS and QDLS, but what is the difference between these 2 commands?
SAV DEV('QSYS.LIB/TAP01.DEVD') OBJ(('/*') +
('/QSYS.LIB' *OMIT) ('/QDLS' *OMIT)) +
ENDOPT(*LEAVE)
AND
SAV DEV('QSYS.LIB/TAP01.DEVD') OBJ(('/') +
('/QSYS.LIB' *OMIT) ('/QDLS' *OMIT)) +
ENDOPT(*LEAVE)
Should it be OBJ('/') or OBJ('/*)
SAV DEV('QSYS.LIB/TAP01.DEVD') OBJ(('/*') +
('/QSYS.LIB' *OMIT) ('/QDLS' *OMIT)) +
ENDOPT(*LEAVE)
AND
SAV DEV('QSYS.LIB/TAP01.DEVD') OBJ(('/') +
('/QSYS.LIB' *OMIT) ('/QDLS' *OMIT)) +
ENDOPT(*LEAVE)
Should it be OBJ('/') or OBJ('/*)
Comment