Friday, March 23, 2007

Using Unzip in *nix

unzip on *nix Howto -

Displays what is in the zip file

#> unzip -Z zipFile.zip

Unzips all files to the current directory

#> unzip zipFile.zip

Unzips only File1 and File2 from the zipFile.zip

#> unzip zipFile.zip File1 File2

Unzips File1 to newDir/File1

#> unzip -d newDir zipFile.zip File1


No comments: