Zipping up files in AIX UNIX


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Zipping up files in AIX UNIX
# 1  
Old 12-16-2009
Zipping up files in AIX UNIX

I need the command to add single pdf's to one zip file. I have tried gzip but all I can achieve is each file individually being zipped. This zip file then needs to be compatable with a windows unzip application such as winzip.
# 2  
Old 12-16-2009
Hi.

As far as I know there is no (native) tool to "zip" multiple files into a single archive.

Normally you would create an archive using tar and then gzip the .tar file.

A tool like WinRAR can handle .tar.gz files on Windows, and although I never use it, I presume WinZip can too.
# 3  
Old 12-16-2009
Standard commandline zip and unzip has almost certainly been ported to AIX as well, though it may need to be installed.
# 4  
Old 12-16-2009
Quote:
Originally Posted by Corona688
Standard commandline zip and unzip has almost certainly been ported to AIX as well, though it may need to be installed.
Yes, there is.

IBM AIX Toolbox download information

Last edited by Scott; 12-16-2009 at 01:58 PM..
# 5  
Old 12-16-2009
Quote:
Originally Posted by Dolph
I need the command to add single pdf's to one zip file. I have tried gzip but all I can achieve is each file individually being zipped. This zip file then needs to be compatable with a windows unzip application such as winzip.
Code:
tar cvf - *.pdf |gzip > allpdf.tar.gz

# 6  
Old 12-16-2009
if you have Java installed cheat and use the jar command . Smilie

it works just like the tar command.

Code:
jar cvf mypdfs.zip *.pdf

# 7  
Old 12-17-2009
Thanks I have used:
Code:
tar cvf - *.pdf | gzip > allpdf.tar.gz


Last edited by zaxxon; 12-17-2009 at 05:15 AM.. Reason: code tags, thank you
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Find and removing the old files and zipping the files using shell script

Hi, I am trying to removing the old files which were older than 10 days and same g zipping the files using the shell script. script was return as follows. find /jboss7_homes/JBOSS7/SKYLIV??/SKYLIV??_CRM/jboss-eap-7.0/standalone/log -mtime +10 -type f | xargs rm -f find /cer_skyliv??/log... (6 Replies)
Discussion started by: venkat918
6 Replies

2. UNIX for Beginners Questions & Answers

Zipping the files in UNIX having extension after

Hi Folks I have a logs file at directory cd /opt/app/logs named as coa.log.1 uoa.log.2 erete-rere.log.1 now my concern is that i am looking for unix command which will zip the files having extension log.1 or log.2 or having log. extension anything request you to... (4 Replies)
Discussion started by: neerasri
4 Replies

3. Shell Programming and Scripting

Zipping the files with data

I have files a_cd_1.csv a_cd_2.csv a_cd_3.csv I need to zip these files into one zip file a_cd.zip but if no data is there in any of these csv then only csv with data should be zipped. Also these files will always have header record if data is present or not. Please let me know how this... (9 Replies)
Discussion started by: weknowd
9 Replies

4. Shell Programming and Scripting

Zipping files

Hi Guys, The script below works but it creates a zip folder under 123_arch.zip -- test1 -- orig1.txt -- orig2.txt -- orig3.txt -- orig4.txt I don't want the sub directory test1 but everything under the base *arch name I can not create a long name with... (4 Replies)
Discussion started by: GaryP1973
4 Replies

5. UNIX for Dummies Questions & Answers

Zipping files

Hi All, I have a scenario where in am using uuencode to send a txt file as an excel to end users( email attachment).I have 7 different files and these files are sent as emails 7 times... So my question is, can i not zip all the 7 files at once and attach those files in a single... (9 Replies)
Discussion started by: saggiboy10
9 Replies

6. Shell Programming and Scripting

Help with zipping files

Hi, I have come across a requirement in which I need to zip files. This is fine but the requriement has one conditions like below: One .z file can not have more than 10,000 files Now in the directory I have several files liek below: aaa_file_10_00001.txt aaa_file_10_00002.txt... (6 Replies)
Discussion started by: angshuman
6 Replies

7. Shell Programming and Scripting

zipping files

Hi, Is there any difference if files are individually zipped and archived in a directory or if files are moved into archiving directory and zipping that directory. (3 Replies)
Discussion started by: swathich
3 Replies

8. UNIX for Dummies Questions & Answers

Zipping files - Please help me its urgent

Dear all, I have thousands of log files in my log directory which I need to zip them and archive. I tried using zip command. But it is not allowing me to archive it more that 4GB of file size. So how to archive them. If it is not possible how to zip all files in to multiple archive files which... (3 Replies)
Discussion started by: tvbhkishore
3 Replies

9. UNIX for Dummies Questions & Answers

Zipping files?

how would i zip a file? what does zip mean? (4 Replies)
Discussion started by: trob
4 Replies

10. Shell Programming and Scripting

zipping files

Dear Experts, I need a script which will zipped the files older than 2 days. but i dont want to use find . * -mtime 2. Is there is any other method to achive this task. i will ececute the script daily. Regards, (3 Replies)
Discussion started by: shary
3 Replies
Login or Register to Ask a Question