Bash Tarring not un Tarring correctly


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Bash Tarring not un Tarring correctly
# 1  
Old 07-17-2009
Bash Tarring not un Tarring correctly

HI All,

Im encountering behaviour that is not correct for my requirements when I untar a file.

Im using the below command to tar up files from various folders to the ARCHIVE folder as below...

tar -cvf "$ARCHIVE_PATH"/"$dte_tar_filename" "$LOG_PATH" "$PROCESSED_PATH2" "$ERROR_PATH"


WHen I copy the tarred file into a seperate independent folder and use
tar -xvf *.tar , the files are untarred into the above folder respectively which I do not want. (Note the variables I pass into the tar command manitain the full path structure)

I just want all the folder structure and files to untar within the independent folder where I issued the command tar -xvf *.tar.

I missing a trick here.. any ideas?

Regards
Satnam
# 2  
Old 07-17-2009
I doubt we have that option...
I tried but could not get anything in the man page.
one alternative is to to read thru' the tar file and get things done by removing the header/trailer.. Not a good idea though
# 3  
Old 07-17-2009
See if this helps you,

tar -C <DIR> -xvf *.tar
# 4  
Old 07-17-2009
HI, Unfortunatelt tar -C <DIR> -xvf *.tar
did not seem to work , Im working on Solaris using Bash So Im not sure of that a factor.

The weird thing is that when I use Cygwin Bash on windows, it opens up the tar file and cretes the folder structure within the folder the tar file was in which is exactly what I need. ie id does not place the files in the origional folders as is the problem explained in my origional posting.

Any further ideas appreciated?!

Regards
Satnam
# 5  
Old 07-20-2009
hmm.. I just gave the option but not the proper syntax..

try, tar -xvf xxx.tar -C <DIR>

it should work..
# 6  
Old 07-20-2009
Nothing todo with shell, only your version of tar is important.

Solaris tar man

In some tar you can use A option for this:
tar -xvAf xxx.tar will restore using THIS directory with relative paths even tar has done using absoluth paths.
I looked one Solaris (5.10) man tar, I didn't find any options for this ...

My opinion has been always - make tar using relative paths. Easier to handle restore.

Solution: move tar file to some Linux box and use -C option or install gnutar for your SunOS and use -C option.

---------- Post updated at 11:16 AM ---------- Previous update was at 11:16 AM ----------

Nothing todo with shell, only your version of tar is important.

Solaris tar man

In some tar you can use A option for this:
tar -xvAf xxx.tar will restore using THIS directory with relative paths even tar has done using absoluth paths.
I looked one Solaris (5.10) man tar, I didn't find any options for this ...

My opinion has been always - make tar using relative paths. Easier to handle restore.

Solution: move tar file to some Linux box and use -C option or install gnutar for your SunOS and use -C option.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. HP-UX

Tarring files to remote server

Hi, I need to tar some files in a directory to a remote server. I need to exclude some file from this directory and then tar it over. This is the command suggested by one article (tarring in the same server) : tar -zcvf /tmp/mybackup.tar.gz -X exclude.txt /home/me However it does not... (9 Replies)
Discussion started by: anaigini45
9 Replies

2. Programming

Fork and Execvp Not Executing Bash Commands From C correctly.

I had been looking at page 75 of this online book: http://richard.esplins.org/static/downloads/linux_book.pdf I've used the system function in C to call bash commands before, but wanted to learn this way too. The solution in the book worked perfectly. However, I tried changing the simple "ls -l... (3 Replies)
Discussion started by: Azrael
3 Replies

3. UNIX for Dummies Questions & Answers

Bash does not wrap long lines correctly

Ksh is my default shell, but I want use the bash shell since its convenient to me. When I type a long command line in a terminal, it does not wrap to the next line when I reach the end of the line and it wraps onto the same line, overwriting my prompt and the rest of what I typed. $... (5 Replies)
Discussion started by: senthil.ak
5 Replies

4. UNIX for Dummies Questions & Answers

Tarring files up to four days old

Hi I need help in tarring files up to four days old. I have been doing this: find . -mtime -4|xargs tar -cvf mar4.tar However, it seems like it's tarring everything but leaving those that are 4 days old and newer (which I want tarred and everything else not) ---------- Post updated at... (1 Reply)
Discussion started by: MIA651
1 Replies

5. Shell Programming and Scripting

Tarring problem.

We execute script to tarr files as normal user. Normal user doesn't have permission to append file to existing tarr file, since tarr files are owned by root user. Even though script is creating tar file and is executed by normal user, It shows that tar file is created by root. I ran script for... (3 Replies)
Discussion started by: Nagaraja Akkiva
3 Replies

6. Shell Programming and Scripting

How to get BASH to interpret pipes in a string correctly?

In a BASH library I'm creating, I have two functions that look like: function check_process { PIDFILE=$1 if ; then PID=`cat $PIDFILE` if && ; then return 1 fi; fi; return 0 } function fork_process { CMD=$1 PIDFILE=$2 ... (2 Replies)
Discussion started by: neked
2 Replies

7. Shell Programming and Scripting

tarring/compressing files in Unix directory

hi guys, i'm totally new with Unix sripting and no idea how to do the scripting at all. My problem is that my boss asked me to do this: 1.) create a script that will tar or gzip the files in particular directory eg: i'm on my home directory and I need to tar/gzip the file in.. assuming... (1 Reply)
Discussion started by: montski
1 Replies

8. UNIX for Dummies Questions & Answers

tarring large no. of files

dears, I have a folder containing huge no. of files, some of them are created on AUG 16, AUG 17 and AUG 18, for example. All I want to do is tarring all the files created on a certain date, say AUG 18, in one tar file, only in one command line. So, how to feed all the files created on a certain... (4 Replies)
Discussion started by: marwan
4 Replies

9. UNIX for Dummies Questions & Answers

tarring and gzipping dump files

Say I want to transfer several dump files from a Solaris machine onto a Win2k machine for storage. It was suggested that I tar and gzip the dump files before doing so. Is it completely necessary to use both of these utilities, or is it sufficient to compress multiple dump files into one gzip... (4 Replies)
Discussion started by: PSC
4 Replies

10. UNIX for Dummies Questions & Answers

backup : files being modified while tarring

I would like to back up several directories weekly using a cronjob. I'm not experienced in UNIX, but I would start like this: tar -cvf backup.tar dir1 dir2 dir3 Now if a file is being modified in the process it will result in an error. How can I prevent this from happening and how can I... (5 Replies)
Discussion started by: jamesbond
5 Replies
Login or Register to Ask a Question