1752546 Members
4600 Online
108788 Solutions
New Discussion юеВ

Re: unix unzip

 
saifs
New Member

unix unzip

hi
i need to un zip file in unix
5 REPLIES 5

Re: unix unzip



http://hpux.connect.org.uk/hppd/hpux/Misc/unzip-5.52/

Make sure you also get the run-time dependencies

HTH

Duncan

I am an HPE Employee
Accept or Kudo
Mark McDonald_2
Trusted Contributor

Re: unix unzip

are you sure it is unzip you need?

does the filename have an extension?

.z
.Z
.gz
etc

These all need different programs to unzip/uncompress them.
Suraj K Sankari
Honored Contributor

Re: unix unzip

Hi,

Please let me know what is your file extansion.

Suraj
Frank de Vries
Respected Contributor

Re: unix unzip

unzip utility to unzip oracle stuff on hpux

http://updates.oracle.com/unzips/unzips.html

default location:
bxud0021:/root#which unzip
/usr/local/bin/unzip

NAME
unzip - list, test and extract compressed files in a ZIP archive

SYNOPSIS
unzip [-Z] [-cflptTuvz[abjnoqsCKLMVWX$/:]] file[.zip] [file(s) ...]
[-x xfile(s) ...] [-d exdir]
Look before you leap
Arturo Galbiati
Esteemed Contributor

Re: unix unzip

Hi,
If you don't have access to an unzipping utility, you can use the jar command, included in the "bin" directory of the Java, as long as it is reachable from your executable path. "
jar xvf file.zip

To locate jar:
find /opt -name jar 2>/dev/null

HTH,
Art