gzip compatibility with WinZip/PKZIP


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting gzip compatibility with WinZip/PKZIP
# 1  
Old 02-26-2008
gzip compatibility with WinZip/PKZIP

I have 4 files in a dir ,
A_to_Z.txt
Z_to_A.txt
1_to_20.txt
20_to_1.txt
I want to create a single gzip file which will contain these 4 text files. This gzip file should be compatible with Windows PKZIP/WinZip. I know you will suggest 'tar' command. But PKZIP/WinZip dont recognize zipped tar files seems. Please help me in this.

Thanks,
kanu_kanu
# 2  
Old 02-26-2008
use zip command
zip <filename>.zip A_to_Z.txt Z_to_A.txt 1_to_20.txt 20_to_1.txt
# 3  
Old 02-26-2008
i forgot to mention the platform . I need it in HP-UX. It wont have "zip"
# 4  
Old 02-26-2008
Gzip can compress only one file at a time because it's a compressor, not a packaging utility. Because of this, if you want to put together many files you have to tar them and then gzip the output tarfile.

So you can:
1) Install and use "zip" utility on your source machine
2) Use tar, gzip and install an appropriate utility on the Windows machine
3) Compress each single file with gzip
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

gzip vs pipe gzip: produce different file size

Hi All, I have a random test file: test.txt, size: 146 $ ll test.txt $ 146 test.txt Take 1: $ cat test.txt | gzip > test.txt.gz $ ll test.txt.gz $ 124 test.txt.gz Take 2: $ gzip test.txt $ ll test.txt.gz $ 133 test.txt.gz As you can see, gzipping a file and piping into gzip... (1 Reply)
Discussion started by: hanfresco
1 Replies

2. AIX

unzip pkzip for AIX

Attached unzip pkzip bzip for AIX How to install it 1) download the attachment 2) ftp it to AIX machines in binary mode ftp it to /tmp/unzip 3) cd /tmp/unzip 4) inutoc . 5) smitty install_all 6) select source as ==> . 7) Select the packages by pressing F4 or ESC+4 8)... (0 Replies)
Discussion started by: filosophizer
0 Replies

3. Shell Programming and Scripting

Need help with PKZIP

Hi, I have .tar file whose size is > 2 GB, when i tries to zip this file sometimes it compresses the file successfully, sometime it fails. How can i ensure that this file compresses successfully always? One important point i have notice, if file size is > 2GB i am getting this problem, if... (2 Replies)
Discussion started by: shantoshkumar
2 Replies

4. Shell Programming and Scripting

What is the code for compressing files using pkzip ?

hi everyone , Can someone provide me a shell program to compress and decompress files using gzip , i dont know anything in shell programming , this code is a part of my project. So can someone help with me the code ? (2 Replies)
Discussion started by: mig23
2 Replies

5. UNIX for Dummies Questions & Answers

How to open WinZip file in linux

Hi i am an fresh engineer working in a Embedding company and i am new to linux so any one help me to teach or tell how to open a WinZip file in linux as i use gunzip but hte file suffix is not gz so can any one healp me... urs ... (2 Replies)
Discussion started by: wagmare
2 Replies

6. UNIX for Dummies Questions & Answers

winzip compatible command

Dear friends, I m new to Unix, can anybody please guide me on how to zip and password protect a normal text (or any file) in unix prompt? (1 Reply)
Discussion started by: topgear1000cc
1 Replies

7. HP-UX

uncompress of PKZIP files on HPUX

Hi All, is there any command to unzip the compressed files compressed using PKZIP on HP-UX. We dont have unzip. and gunzip or compress commands are not working. is there any other to do this? Thank you very much for the help. Regards, Srinivas (3 Replies)
Discussion started by: srinivas_paluku
3 Replies

8. Shell Programming and Scripting

Calling Winzip from perl script

Hi, I would like to invoke "Winzip" utility from a perl script, input the name of zip file and provide output path for unzipped files. Any pointers will be appreciated. Thanks (5 Replies)
Discussion started by: MobileUser
5 Replies

9. Shell Programming and Scripting

PKZIP on AIX

Hi, I have a situation where I need to zip files(using pkzip) and send it to vendor, the problem is we are on AIX 5L and when I do man pkzip it does not show anything I assume that it is not installed, but I read some where that it would be istalled but not enabled is it right if yes could... (3 Replies)
Discussion started by: mgirinath
3 Replies

10. UNIX for Dummies Questions & Answers

uncompress pkzip files

Are there any unix/linux tools that can uncompress the "pkzip" files from DOS env. Thanks . (2 Replies)
Discussion started by: Wing m. Cheng
2 Replies
Login or Register to Ask a Question