1832317 Members
1904 Online
110041 Solutions
New Discussion

HPUX gtar

 
SOLVED
Go to solution
vaman
Frequent Advisor

HPUX gtar

Can I get information on how gtar works.
Perticularly for copping from one system to other.
vaman kulkarni
2 REPLIES 2
Deoncia Grayson_1
Honored Contributor

Re: HPUX gtar

Try this link...


http://notabug.com/2002/coherent/man/gtar.html


Hope this helps
If no one ever took risks, Michelangelo would have painted the Sistine floor. -Neil Simon
Stf
Esteemed Contributor
Solution

Re: HPUX gtar

Hello,

this may help you :

gtar - GNU version of the tar utility. Store directories and files together into a single archive file. Use the normal tar program to backup files to a tape. See info tar for documentation.
gtar cf out.tar dir1 # put contents of directory into out.tar
gtar czf out.tar.gz dir1 # write compressed tar, out.tar.gz
gtar tf in.tar # list contents of in.tar
gtar tzf in.tar.gz # list contents of compressed in.tar.gz
gtar xf in.tar # extract contents of in.tar here
gtar xzf in.tar.gz # extract compressed in.tar.gz
gtar xf in.tar file.txt ... # extract file.txt from in.tar

Stf ;-)