10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
hi all,
i attach a link with what im trying to do automatically via script but i have some questions i need answering please, bear in mind i am really new to bash scripting, the only thing i know how to do is commands in scripts like cd rm tar rsync cp stuff like that
i have mutiple project... (48 Replies)
Discussion started by: robertkwild
48 Replies
2. UNIX for Dummies Questions & Answers
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
3. Shell Programming and Scripting
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
4. Shell Programming and Scripting
I have list of ‘tar' format files in a folder. I want to check a particular file is exists in the tar files. Currently I am using the below command to check the scenario.
tar -tvf first.tar | grep ‘myfile.txt'
The command able to searched a single ‘tar' file only. But I want to search... (7 Replies)
Discussion started by: k_manimuthu
7 Replies
5. UNIX for Dummies Questions & Answers
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
6. Shell Programming and Scripting
Hi,
What I'm trying to do is rather easy to explain, but I don't know if it's possible.
The main idea is that I have directories which I want to add to a TAR file, but for some of them I don't want to include the files in the directory. I just want to add the path to the TAR file as if the... (5 Replies)
Discussion started by: wisobe
5 Replies
7. UNIX for Dummies Questions & Answers
Hello,
What is the command to add files to an existing tar file.
Thanks, (5 Replies)
Discussion started by: Nomaad
5 Replies
8. UNIX for Advanced & Expert Users
Hi,
On my Unix Server in my directory, I have 70 files distributed in the following directories (which have several other files too). These files include C Source Files, Shell Script Source Files, Binary Files, Object Files.
a) /usr/users/oracle/bin
b) /usr/users/oracle... (1 Reply)
Discussion started by: marconi
1 Replies
9. Shell Programming and Scripting
so i have hundreds of files named history.20071112.tar
(history.YYYYMMDD.tar)
and im looking to extract one file out of each archive called status_YYYYMMDDHH:MM.lis
here is what i have so far:
for FILE in `cat dirlist`
do
tar xvf $FILE ./status_*
done
dirlist is a text... (4 Replies)
Discussion started by: kuliksco
4 Replies
10. Shell Programming and Scripting
There are these ksh files and config files that are written and updated on a daily basis.
All I want to do is write a script that finds both these types of files and archive them on a daily basis, to help in restoring in times of system outages and so on. Particulary I'm interested in .ksh ,... (9 Replies)
Discussion started by: manthasirisha
9 Replies
tar(n) Tar file handling tar(n)
__________________________________________________________________________________________________________________________________________________
NAME
tar - Tar file creation, extraction & manipulation
SYNOPSIS
package require Tcl 8.4
package require tar ?0.4?
::tar::contents tarball
::tar::stat tarball ?file?
::tar::untar tarball args
::tar::get tarball fileName
::tar::create tarball files args
::tar::add tarball files args
::tar::remove tarball files
_________________________________________________________________
DESCRIPTION
::tar::contents tarball
Returns a list of the files contained in tarball. The order is not sorted and depends on the order files were stored in the archive.
::tar::stat tarball ?file?
Returns a nested dict containing information on the named ?file? in tarball, or all files if none is specified. The top level are
pairs of filename and info. The info is a dict with the keys "mode uid gid size mtime type linkname uname gname devmajor devminor
% ::tar::stat tarball.tar
foo.jpg {mode 0644 uid 1000 gid 0 size 7580 mtime 811903867 type file linkname {} uname user gname wheel devmajor 0 devminor 0}
::tar::untar tarball args
Extracts tarball. -file and -glob limit the extraction to files which exactly match or pattern match the given argument. No error is
thrown if no files match. Returns a list of filenames extracted and the file size. The size will be null for non regular files.
Leading path seperators are stripped so paths will always be relative.
-dir dirName
Directory to extract to. Uses pwd if none is specified
-file fileName
Only extract the file with this name. The name is matched against the complete path stored in the archive including directo-
ries.
-glob pattern
Only extract files patching this glob style pattern. The pattern is matched against the complete path stored in the archive.
-nooverwrite
Dont overwrite files that already exist
-nomtime
Leave the file modification time as the current time instead of setting it to the value in the archive.
-noperms
In Unix, leave the file permissions as the current umask instead of setting them to the values in the archive.
% foreach {file size} [::tar::untar tarball.tar -glob *.jpg] {
puts "Extracted $file ($size bytes)"
}
::tar::get tarball fileName
Returns the contents of fileName from the tarball
% set readme [::tar::get tarball.tar doc/README] {
% puts $readme
}
::tar::create tarball files args
Creates a new tar file containing the files. files must be specified as a single argument which is a proper list of filenames.
-dereference
Normally create will store links as an actual link pointing at a file that may or may not exist in the archive. Specifying
this option will cause the actual file point to by the link to be stored instead.
% ::tar::create new.tar [glob -nocomplain file*]
% ::tar::contents new.tar
file1 file2 file3
::tar::add tarball files args
Appends files to the end of the existing tarball. files must be specified as a single argument which is a proper list of filenames.
-dereference
Normally add will store links as an actual link pointing at a file that may or may not exist in the archive. Specifying this
option will cause the actual file point to by the link to be stored instead.
::tar::remove tarball files
Removes files from the tarball. No error will result if the file does not exist in the tarball. Directory write permission and free
disk space equivalent to at least the size of the tarball will be needed.
% ::tar::remove new.tar {file2 file3}
% ::tar::contents new.tar
file3
BUGS, IDEAS, FEEDBACK
This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category tar of
the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have for
either package and/or documentation.
KEYWORDS
archive, tape archive, tar
tar 0.4 tar(n)