tar.gz zip file.....


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers tar.gz zip file.....
# 1  
Old 12-18-2007
tar.gz zip file.....

Hi,
i have tar.gz file in inbound director.
i want display the contents on the tar.gz file in a temp file.
please help me on this.
# 2  
Old 12-18-2007
Quote:
Originally Posted by koti_rama
i want display the contents on the tar.gz file in a temp file.
Code:
gunzip <the.tar.gz | tar tf - >tempfile

# 3  
Old 12-18-2007
If you are using the gnu version of tar you can use

tar -ztvf tar.gz
# 4  
Old 12-18-2007
this command all orginal date store in base location( were we did zip).
i want all data store in temp file from tar.gz file.
# 5  
Old 12-18-2007
Quote:
Originally Posted by koti_rama
this command all orginal date store in base location( were we did zip).
i want all data store in temp file from tar.gz file.
You mean extract into a directory?

Code:
cd target-directory
gunzip <path-to-tar.gz | tar xf -

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Tar.gz/zip folders in a directory with _EBASE string

Hi Folks - Happy Friday and I hope you all are well! What's the easiest way to tar.gz / zip all direct children directories in a folder that have the string _EBASE (suffix)? Thank you! (6 Replies)
Discussion started by: SIMMS7400
6 Replies

2. UNIX for Dummies Questions & Answers

Extract .zip file without using unzip,tar

Hi, Need to extract a file containing multiple .txt files without using tar/unzip as they are not available (1 Reply)
Discussion started by: santoshdrkr
1 Replies

3. UNIX for Dummies Questions & Answers

TAR and ZIP files

Hi, I need a help with zip and tar. I have no done any scripts before with zip command. What I need to achieve is list files in a directory with a specific name (ID_DATE format- given examples) and then zip (or gunzip which I need to use, I am not sure) with timestamp on the file name and then... (15 Replies)
Discussion started by: Vijay81
15 Replies

4. UNIX for Advanced & Expert Users

How to zip/tar millions of files?

Hi guys, I have an issue processing a large amount of files. I have around 5 million files (some of them are actually directories) in a server. I am unable to find out the exact number of files since it's taking "forever" to finish (See this thread for more on the issue). Anyway, now I... (6 Replies)
Discussion started by: verdepollo
6 Replies

5. Shell Programming and Scripting

Hash marks when running tar or zip from Cshell

Does anyone know how to get hash marks (or some other visual indicator) to print to the screen during tar or zip commands run from within a Cshell on Sun or Linux? Currently the user receives no indication that a command is running and cannot be sure that a problem has not occurred. I can find... (3 Replies)
Discussion started by: phudgens
3 Replies

6. UNIX Desktop Questions & Answers

Using Tar Zip

Hi, I want to backup my SQL database using tar zip but I'm paranoid that I will archive it. What I mean is I want the files to stay where they are but make a zipped copy of the files as well, I don't want to delete the originals. Is the command? tar -cvzf databasename.tar.gz... (1 Reply)
Discussion started by: chickenhouse
1 Replies

7. UNIX for Dummies Questions & Answers

diff between TAR+zip+FTP and TAR+FTP

Huloo, whats diff between TAR+zip+FTP and TAR+FTP,can't we simpply FTP a file without Zipping it? TAR is simply for Archiving ,then why do we need to Zip it? :( (1 Reply)
Discussion started by: swarup2008
1 Replies

8. UNIX Desktop Questions & Answers

file zip,rar,tar,compress,uncompress,unzip,unrar

i want know how to compress and uncompress file using unix, compress uncompress,zip,unzip,rar,unrar,how its work and more about this.:confused: (1 Reply)
Discussion started by: ismael xavier
1 Replies

9. Shell Programming and Scripting

Conversion of .zip to .tar.Z format

Can we have a shell script for this sort of conversion? There are some web-based tools which display the contents of tar.Z format. I am trying to convert zip files to that Thanks in advance (2 Replies)
Discussion started by: eagercyber
2 Replies

10. UNIX for Dummies Questions & Answers

Disk-Spanning Zip/Tar-File

I don't know how to create a disk-spanning archive using UNIX. Could someone please help me out? (1 Reply)
Discussion started by: mrosengarth
1 Replies
Login or Register to Ask a Question