TAR question (probably a very simple answer)


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers TAR question (probably a very simple answer)
# 1  
Old 09-17-2010
Question TAR question (probably a very simple answer)

Hi All,

I have a (probably) very simple tar question on a Solaris box that I'm a little embarrassed to ask. After repeatedly checking man tar and searching for solutions online (I'm not sure of the correct "keywords" to look for)

The question is:
If I were to use the command:
Code:
tar cf test.tar /testing123/*.gz

It would include /testing123/ within the tar file.
How would I either change the above command to 'not' include, or strip the directory information within this tar file?

Thanks so much,
cg
# 2  
Old 09-17-2010
cd /testing123 ; tar -cf /path/to/test.tar *.gz
# 3  
Old 09-17-2010
Question

Quote:
Originally Posted by Corona688
cd /testing123 ; tar -cf /path/to/test.tar *.gz
Although that does work, Is there a way of doing this without changing the directory beforehand? (apologies for not asking that part of it in the original question) Thanks!

cg
# 4  
Old 09-17-2010
Not when using a wildcard, I think. That is done inside the shell, you can't feed a literal "*.gz" into tar and expect it to understand. So either you need to be in the directory, or specify the full path, for the shell to find the files before tar is called.

If you don't need wildcards, you might be able to do

Code:
tar -C /path/ -cf file.tar .

to get it to archive all of /path/ indiscriminately.
This User Gave Thanks to Corona688 For This Post:
# 5  
Old 09-17-2010
MySQL

Hm, looks like you're right about wildcards. Will list out the files in the script. That will work. Thanks!
cg
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Red Hat

Syslog.conf: looking for a simple answer on a simple question

Cheers! In /etc/syslog.conf, if an error type is not specified, is it logged anywhere (most preferable is it logged to /var/log/messages) or not? To be more precise I am interested in error and critical level messages. At default these errors are not specified in syslog.conf, and I need to... (6 Replies)
Discussion started by: dr1zzt3r
6 Replies

2. Solaris

Solaris JumpStarting?... Simple Yes/No Question... Unless the answer's 'No'

I'm reading through this guide, BigAdmin Feature Article: Using Solaris JumpStart With the Solaris 10 OS for x86/x64 Platforms, and I was wondering if there was more to the bash scripts than just the example given (see above link) like for begin1 and begin2 and finish1 and finish2. I don't know... (3 Replies)
Discussion started by: Bradj47
3 Replies

3. UNIX for Dummies Questions & Answers

Please, i need an answer to this question!!

Hello!! I need some help about a question... It was asked in exams 3 years ago in Greece and nobody is certain abou the answer. Others say that the right answer is b and others say c. I found this forum and i saw that you know a lot of things about UNIX so i hope that some of you will help me.... (1 Reply)
Discussion started by: evoula_vou
1 Replies

4. Shell Programming and Scripting

automatically answer a question raised by a command

i have installed vmware on a text base linux node now i have to vmware-configure.pl to do the initial configuration now 1st step it askes for agreeing for a " License Agreement" for that i have to say "q" and "yes" to Accept it i want to run a script with does these 3 steps... (6 Replies)
Discussion started by: pbsrinivas
6 Replies

5. UNIX for Dummies Questions & Answers

Ok simple question for simple knowledge...

Ok what is BSD exactly? I know its a type of open source but what is it exactly? (1 Reply)
Discussion started by: Corrail
1 Replies

6. Shell Programming and Scripting

Stupid question but please answer

How do i save a script in unix. do i just type something like #!/bin/sh # This is a comment! echo Hello World #This is also a comment Then just go to save as and save it or what? just kinda confused me as i was reading different things and playing around (6 Replies)
Discussion started by: Corrail
6 Replies

7. UNIX for Dummies Questions & Answers

Simple TAR question

Unix is great at giving you power were you need it, but what a pain in the rump when you just want to do such a simple thing like file management. I'm going back to Windows, crashing is frustrating, needing to spend 30 min just to zip a file up is crazy. (3 Replies)
Discussion started by: yankee428
3 Replies

8. UNIX for Dummies Questions & Answers

A question that need an answer Plz

I'm with FreeBSD 4.6.2, and i would like to know how to install this ports : ftp://ftp.freebsd.org/pub/FreeBSD/branches/-current/ports/net/kmerlin There's no .tgz so i can't do the pkg_add command. Can you please help me??? Thank You. :) Erythro73 (6 Replies)
Discussion started by: Erythro73
6 Replies
Login or Register to Ask a Question