How to Uncompress a whole directory


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How to Uncompress a whole directory
# 1  
Old 10-18-2005
How to Uncompress a whole directory

Hi,

Can any one give me the shell command to rename more than one files to .Z extension in a directoy or path.

As well as how can i uncompress a whole directory with a single shell command?

rEgards,
Tayyab
# 2  
Old 10-18-2005
compressdir will compress a whole directory, uncompressdir uncompresses.
# 3  
Old 10-18-2005
I notice that AIX does not have compressdir so would the steps be to use tar to back them up and then compress?
# 4  
Old 10-19-2005
SCO Unixware does'nt have compressdir too

Hi,

Thanks for your reply.
But SCO Unixware does not have compressdir command too. What shall I do in this case, and what about renaming more than one files in a direcotry to .Z extension with single shell command.
# 5  
Old 10-19-2005
Code:
tar -cf - dir_to_compress | compress > outputfile.tar.Z

This should work on almost any unix system.
# 6  
Old 10-19-2005
Code:
# uncompress dir
for file in `find /path/to/dir -name \*.Z`
do
    uncompress $file
done

#compress dir 
for file in `find /path/to/dir -name \*.Z`
do
    compress $file
done

compressdir and uncompressdir are just wrappers like I have written above...
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Cannot uncompress the tar.gz

I've downloaded the tomcat from http://archive.apache.org/dist/jakarta/tomcat-5/v5.0.30/bin/ at window 2000 and then ftp to Solaris 5.9 in binary mode. gunzip -c jakarta-tomcat-5.0.30.tar.gz | tar -xvf - tar: directory checksum error if try this one, gzip -d jakarta-tomcat-5.0.30.tar.gz... (2 Replies)
Discussion started by: sbox
2 Replies

2. Shell Programming and Scripting

Help with uncompress...Urgent

Hi, I am restoring the database backup using compress utility(/usr/bin/compress) which takes around 1 hour.For restoration i use uncompress utility(/usr/bin/uncompress) which is taking nearly 6-7 hours.Can someone let me know how to reduce this time.I have pasted below the line from script... (2 Replies)
Discussion started by: santtarius
2 Replies

3. UNIX for Advanced & Expert Users

uncompress command

on my suse linux, there is no compress and uncompress command. however, a program need these command to be installed properly. my question is how i can install these command and where to find them, thanks! (6 Replies)
Discussion started by: fredao
6 Replies

4. UNIX for Advanced & Expert Users

uncompress

Hi All, is it possible to uncompress on another directory ? At the moment I have my file to uncompress on /u07 that has 5GB free. When uncompressed it would be more then 6G , I want to send uncompressed file on another directory where I have more free space. is it possible ? How ? Many thanks... (3 Replies)
Discussion started by: big123456
3 Replies

5. Programming

uncompress of zlib

When I gzopen & gzread from a gzip file, it works OK. But I when I try to uncompress the same data from memory (either by reading to memory with fread or mmap()ing) using decompress, I get Z_DATA_ERROR. Is it because gzip file has some kind of headers that uncompress doesn't want? How can I get... (3 Replies)
Discussion started by: rayne
3 Replies

6. UNIX for Dummies Questions & Answers

How to get to a file and uncompress it

I did an ftp to copy a tar file from a main server area to the backup server area. I need to get that tar file to uncompress it in backup server. How do I go about it. Please any suggesstion will be greatly appreciated (1 Reply)
Discussion started by: nkem22
1 Replies

7. UNIX for Dummies Questions & Answers

uncompress in unix

Hi all, I have compressed a file in windows platform using 7zip into tar.z format. I try to uncompress in Unix using uncompress command. It doesn't work. Can anyone tell me wether there is any tools I can use in windows to generate a Tar.Z file which can be uncompress in unix. From Icestone (1 Reply)
Discussion started by: icestone
1 Replies

8. UNIX for Dummies Questions & Answers

Uncompress... me!!!!!! :)

Dear friends, i'm trying to uncompress an "...... tar.z" file. I'd readen that using the "uncompress" command it could be made but............... God! I can't!!!!! I tried a lot of times using the Terminal but the uncompress command doesn't obeys!!! :):) . Please i need to know how to... (3 Replies)
Discussion started by: gussiglo21
3 Replies

9. UNIX for Dummies Questions & Answers

uncompress files

I get a compressed file for linux and I want to uncompress it in Unix. Is that possible? I try with te command uncompress but it didnīt work. T.hanks (3 Replies)
Discussion started by: diegoe
3 Replies

10. UNIX for Dummies Questions & Answers

uncompress command

I am trying to install SUN explorer program on solaris: I download the file SUNWexplo.tar.Z from sun.com, ftp to /tmp then try to uncompress it with the following command: uncompress SUNWexplo.tar.Z which gives the following error: uncompress: corrupt input I tried downloading the file... (4 Replies)
Discussion started by: niamo1
4 Replies
Login or Register to Ask a Question