Скажем, у меня есть следующий файл .zip :
ZipFile.zip
/zipfolder/
this.file
that.file
theother.file
Когда я пытаюсь:
unzip ~/path/to/my/ZipFile.zip -d ~/path/to/my/destination/
... мои нужные файлы находятся в ~/path/to/my/destination /zipfolder/ ; Тем не менее, я хотел бы, чтобы this.file , that.file и theother.file были разархивированы в ~/path/to/my/destination/.
Как бы я это сделал?
