Sponsored Content
Full Discussion: Tar command
Top Forums UNIX for Advanced & Expert Users Tar command Post 302078327 by prashant_kr2002 on Thursday 29th of June 2006 01:41:57 PM
Old 06-29-2006
MySQL

you can use the -u option which will update the existing archive and add new contents to it if doesn't exists.

Prashant.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Need Help with tar command

I'm new to the unix environment. I need to find out what parameters I need to use to save directory structure and the files underneath this directory AND how to restore this directory structure on another unix machine. Please Help :D (5 Replies)
Discussion started by: kmar
5 Replies

2. Shell Programming and Scripting

Tar command

I want to tar multiple folder from a environment but exclude 2 folders among them. How can I do that. Is there any exclude option in tar command. Please co-operate me. Thanking you, Chandrakant. (8 Replies)
Discussion started by: get_chandrakant
8 Replies

3. Shell Programming and Scripting

tar command

Hi all, Can anyone please say me what exactly a 'tar' command does? From what all I know, its not basically a compression tool. But I have seen many used it for compression purpose. If you have any links or any stuff which can help me better understand about 'tar', that will be greatly... (1 Reply)
Discussion started by: kripssmart
1 Replies

4. UNIX for Dummies Questions & Answers

tar -cvf test.tar `find . -mtime -1 -type f` only tar 1 file

Hi all, 4 files are returned when i issue 'find . -mtime -1 -type f -ls'. ./ora_475244.aud ./ora_671958.aud ./ora_934052.aud ./ora_934050.aud However, when I issued the below command: tar -cvf test.tar `find . -mtime -1 -type f`, the tar file only contains the 1st file -... (2 Replies)
Discussion started by: ahSher
2 Replies

5. UNIX for Advanced & Expert Users

help on tar command

Hi, I am using the following DOS command to tar my .gz file from the command prompt C:\tar\bin>tar -cf test.tar D:\Coim\*.gz but this creates a tar file under the path C:\tar\bin\test.tar but i want the tar file to be created under D:\Coim\test.tar Is there any option in tar command... (4 Replies)
Discussion started by: Codesearcher
4 Replies

6. Shell Programming and Scripting

tar command dont tar to original directory

HI, if I have a tarfile called pmapdata.tar that contains tar -tvf pmapdata.tar -rw-r--r-- 0/0 21 Oct 15 11:00 2009 /var/tmp/pmapdata/pmap4628.txt -rw-r--r-- 0/0 21 Oct 14 20:00 2009 /var/tmp/pmapdata/pmap23752.txt -rw-r--r-- 0/0 1625 Oct 13 20:00 2009... (1 Reply)
Discussion started by: borderblaster
1 Replies

7. Shell Programming and Scripting

tar command to explore multiple layers of tar and tar.gz files

Hi all, I have a tar file and inside that tar file is a folder with additional tar.gz files. What I want to do is look inside the first tar file and then find the second tar file I'm looking for, look inside that tar.gz file to find a certain directory. I'm encountering issues by trying to... (1 Reply)
Discussion started by: bashnewbee
1 Replies

8. Shell Programming and Scripting

Single command - unzip files from a tar command

I have a tar file that contains multiple .Z files. Hence I need to issue a tar command followed by a gzip command to fully extract the files. How do I do it in a single command? What I'm doing now is tar xvf a.tar (this will output 1.Z and 2.Z) gzip -d *.Z (to extract 1.Z and 2.Z) (9 Replies)
Discussion started by: ericlim
9 Replies

9. UNIX for Dummies Questions & Answers

Tar Command Help

Is it possible to untar a file so it's size reduces while it uncompresses its contents. I have limited space on my mount point and was wondering if we can untar as a stream in other words the size of tarball reduces as it uncompresses the contents. Thanks (5 Replies)
Discussion started by: sumang24
5 Replies

10. UNIX for Dummies Questions & Answers

UNIX command to check if file name ends with .tar OR if the file is a tar file

Hello Team, Would you please help me with a UNIX command that would check if file is a tar file. if we dont have that , can you help me with UNIX command that would check if file ends with .tar Thanks in advance. (10 Replies)
Discussion started by: sanjaydubey2006
10 Replies
ar(4)							     Kernel Interfaces Manual							     ar(4)

NAME
ar - common archive file format SYNOPSIS
DESCRIPTION
The command is used to concatenate several files into an archive file (see ar(1)). Archives are used mainly as libraries to be searched by the link editor (see ld(1)). Each archive begins with the archive magic string. Following the archive magic string are the archive file members. Each file member is preceded by a file member header which is of the fol- lowing format: All information in the file member headers is in printable ASCII. The numeric information contained in the headers is stored as decimal numbers (except for which is in octal). Thus, if the archive contains printable files, the archive itself is printable. The contents of the field are slash terminated and blank-padded. The field is the modification date of the file at the time of its inser- tion into the archive. Common format archives can be moved from system to system as long as the portable archive command is used. Note that older versions of did not use the common archive format, and those archives cannot be read or written by the common archiver. Each archive file member begins on an even byte boundary; a new-line character is inserted between files if necessary. Nevertheless, the size given reflects the actual size of the file exclusive of padding. Notice there is no provision for empty areas in an archive file. If the archive symbol table exists, the first file in the archive has a zero-length name (i.e., and The contents of this archive member are machine-dependent. Refer to the appropriate a.out(4) manual entry for more information. Each archive which contains object files (see a.out(4)) may include an archive symbol table. This symbol table is used by the link editor (see ld(1)) to determine which archive members must be loaded during the link edit process. The archive symbol table (if it exists) is always the first member in the archive (but is never listed) and is automatically created and/or updated by If a member with a file name greater than 15 bytes exists within the archive, then the archive will also contain an additional special mem- ber to store the long file name string table. The special string table member has a zero length name where and If a special string table exists, it will precede all non-special archive members. If both a symbol table member and a string table member exist then the symbol table member will always precede the string table member. Each entry in the string table is followed by a slash and a new-line character. The offset of the table begins at zero. If an archive mem- ber name exceeds 15 bytes, then the entry in the member's header does not contain a name, instead it contains the offset into the string table preceded by a slash. For example, the member name contains in the field. This value represents the offset into the string table. The member name contains in the field. The long name string table would have the following format: +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +---------------------------------------------------------- 0| t | h | i | s | i | s | a | v | e | r | +---------------------------------------------------------- 10| y | l | o | n | g | f | i | l | e | n | +---------------------------------------------------------- 20| a | m | e | . | o | / | | y | e | t | +---------------------------------------------------------- 30| a | n | o | t | h | e | r | l | o | n | +---------------------------------------------------------- 40| g | f | i | l | e | n | a | m | e | . | +---------------------------------------------------------- 50| o | / | | +---------------- SEE ALSO
System Tools: ar(1) create archived libraries ld(1) invoke the link editor Miscellaneous: a.out(4) assembler, compiler, and linker output magic(4) magic number for HP-UX implementations ranlib(1) regenerate an archive symbol table strip(1) strip symbol and line number information from an object file CAVEATS
removes the archive symbol table member from the archive (see strip(1)). The archive symbol table must be restored by using the option of the command or the ranlib(1) command before the archive can be used with the link editor. ar(4)
All times are GMT -4. The time now is 01:46 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy