This works with zip command version 3.0 or above (available in RHEL 6 onwards). Here is an example that unzips multi part zip archive of an Informatica software.
# ls -l dac_win_11g_infa_linux_64bit_951* -rw-r--r-- 1 root root 2097152000 Nov 12 2013 dac_win_11g_infa_linux_64bit_951.z01 -rw-r--r-- 1 root root 2097152000 Nov 12 2013 dac_win_11g_infa_linux_64bit_951.z02 -rw-r--r-- 1 root root 2097152000 Nov 12 2013 dac_win_11g_infa_linux_64bit_951.z03 -rw-r--r-- 1 root root 1060733887 Nov 12 2013 dac_win_11g_infa_linux_64bit_951.zip Note: there is a hyphen before and after 's' in below command # zip -s- dac_win_11g_infa_linux_64bit_951.zip --out inf2.zip copying: 951HF2_Client_Installer_win32-x86.zip copying: 951HF2_Server_Installer_linux-x64.tar copying: DAC11gInstaller.zip copying: Infa951Docs.zip copying: Oracle_All_OS_Prod.key # unzip inf2.zip Archive: inf2.zip extracting: 951HF2_Client_Installer_win32-x86.zip inflating: 951HF2_Server_Installer_linux-x64.tar extracting: DAC11gInstaller.zip extracting: Infa951Docs.zip inflating: Oracle_All_OS_Prod.key
No comments:
Post a Comment