How can I Unzip a Zip file which contains different directories and sub directories with the overwrite mode ?
I mean i want the zipped contents to overwrites any existing files (be it old be it new).
I have read about Unzip command , but it seems it doesnt overwrite any sub directories.
Tell me more
×
Unix & Linux Stack Exchange is a question and answer site for
users of Linux, FreeBSD and other Un*x-like operating systems.. It's 100% free, no registration required.
|
|
|
When doing something like this it will never replace the directory if it exists, it will create any files in the directory that do not already exist and replace any files that do. Effectively it combines/updates the directory. Without The overwrite all mode you are referring to (-o) will simply overwrite files without asking. |
|||||||||||
|