Compressing folders


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Compressing folders
# 1  
Old 05-31-2006
Error Compressing folders

Hi,
Is there any way to compress folders as such? May look simple, but I have a folder, which inturn has several folders/files in it. Is there any way to compress this parent folder?

Thanks in advance,

Mohan.
# 2  
Old 05-31-2006
Use zip with the -r option.
# 3  
Old 06-02-2006
Thanks Vino,

But when I do this, I get the following message:

"Nothing to do".

Actually I have a dir "adhoc" and there are several files and dirs inside adhoc, and I want to compress this adhoc folder. So what I gave is this:

zip -r adhoc

Do I miss anywhere!?

Thanks again,

MohanPrabu
# 4  
Old 06-02-2006
U can use tar cf with zip option for better Compression

U can use tar cf with zip option for better Compression
# 5  
Old 06-02-2006
Quote:
Originally Posted by mohanprabu
But when I do this, I get the following message:

"Nothing to do".

Actually I have a dir "adhoc" and there are several files and dirs inside adhoc, and I want to compress this adhoc folder. So what I gave is this:

zip -r adhoc

Do I miss anywhere!?
Did you look at the man pages before even trying that option? You wouldn't have that error message if you were to take a look at the man pages.. Here is the man page output for zip command -r option:
Quote:
-r Travel the directory structure recursively;
for example:

zip -r foo foo

In this case, all the files and directories
in foo are saved in a zip archive named
foo.zip, including files with names starting
with ".", since the recursion does not use
the shell's file-name substitution mecha-
nism. If you wish to include only a spe-
cific subset of the files in directory foo
and its subdirectories, use the -i option to
specify the pattern of files to be included.
You should not use -r with the name ".*",
since that matches ".." which will attempt
to zip up the parent directory (probably not
what was intended).
so if you have a dir named adhoc and you want to zip that dir and its contents then you will execute:
Code:
zip -r adhoc adhoc

this will produce a zip file named adhoc.zip

when you want to unzip that dir and its contents then just issue unzip adhoc.zip and it will restore the files and directories for you..

make sure you consult your man documentation on your sytem as much as possible..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Compressing files

I need help to do a script that will compress a file that's bigger than 5000 octets and won't overwrite the previous compress file. lets say I have mylogfile.log and I would compress it I would become mylogfile. 1. log and if I would compress again mylogfile.log it would be mylogfile. 2.... (8 Replies)
Discussion started by: Froob
8 Replies

2. Shell Programming and Scripting

Issue with compressing

I have the following script to archive and compress the zip files created by my jira application, on a daily basis. But the compression seems to be not working. Each zip file is of size 103 MB. When I archive it, its coming close to 3-4 gb. But when I use gunzip or bzip2 the size is not getting... (4 Replies)
Discussion started by: Tuxidow
4 Replies

3. UNIX for Dummies Questions & Answers

Searching for folders/parent folders not files.

Hello again, A little while back I got help with creating a command to search all directories and sub directories for files from daystart of day x. I'm wondering if there is a command that I've overlooked that may be able to search for / write folder names to an output file which ideally... (2 Replies)
Discussion started by: Aussiemick
2 Replies

4. Shell Programming and Scripting

Making 99 folders 99 folders deep

I am trying to make a unix shell script that will make 99 folders 99 deep (counting the first level folders). So far i have made it make the first 99 folders and 99 more in all of the folders. The only problem is the only way i have found is copying and pasting part of the script over and over and... (18 Replies)
Discussion started by: YukonAppleGeek
18 Replies

5. UNIX for Dummies Questions & Answers

Compressing of log files

Hello All My first post in the forum. :) I've this huge log files of size 20GB-30 GB in my unix server. I want to analyse the log file for some error messages. But because of the enormity of the size of these files i'm not able to grep/search the pattern in the file . Also, tried to gzip the... (1 Reply)
Discussion started by: sgbhat
1 Replies

6. UNIX for Dummies Questions & Answers

Compressing several directories

Could someone help with the easiest command to compress several directories and files? For example, I want two directories: /var/www/logs/ and /var/www/zones/ and this file: /var/www/messages to be compressed by tar/zip to a specific output directory like: /var/www/backup.extension ... (1 Reply)
Discussion started by: holyearth
1 Replies

7. UNIX for Dummies Questions & Answers

compressing a directory

I have a pretty large directory on a backup hard drive. I have Tiger for an OS, what would be the best way to compress this directory. there is a large number of files inside in addition if that makes a difference any help appreciated hopefully thanks in advance (2 Replies)
Discussion started by: cleansing_flame
2 Replies

8. Shell Programming and Scripting

compressing a string

HI, let say I have file having name "skp 27.doc". There is space between skp and 27. now I want to rename this file . So please let me know how is it possible? one more issue ............. let say a=5 echo $a output is 5. Again a= 4 echo $a wha will be the output? (1 Reply)
Discussion started by: surjyap
1 Replies

9. UNIX for Dummies Questions & Answers

compressing two files in a script

Hi, i have written a script in unix which produces two files(.csv file) at the end. Now i want to add these to files in a zip file and send the zip file across the network by FTP. Problem is that i dunno how to make a single zip file containing the two files that have been created by the script.... (1 Reply)
Discussion started by: nimish
1 Replies

10. UNIX for Dummies Questions & Answers

Compressing files

I have never used this command before. I need to use the "compress" command to compress all files located in the subdirectories under the following directories: /home/ftp/inbound/Fordin Please advise, I appreciate your help. Thanks, Syed (3 Replies)
Discussion started by: sh9492
3 Replies
Login or Register to Ask a Question