I want to archive 3 folders, given their names in Ubuntu command prompt.
When I use tar -c abc tt zz -> it will do nothing.
Asked
Active
Viewed 1.4k times
2 Answers
10
You can use this command
tar -cvzf tarname.tar.gz a b c
eg:
x@x:/tmp/aas$ touch a b c
x@x:/tmp/aas$ ls
a b c
x@x:/tmp/aas$ tar cvzf tarname.tar.gz a b c
a
b
c
x@x:/tmp/aas$ ls
a b c tarname.tar.gz
x@x:/tmp/aas$ rm a b c
x@x:/tmp/aas$ ls
tarname.tar.gz
x@x:/tmp/aas$ gunzip -c tarname.tar.gz | tar xvf -
a
b
c
x@x:/tmp/aas$ ls
a b c tarname.tar.gz
x@x:/tmp/aas$
daya
- 2,571
- 17
- 19
-
1how about the use of gz? – radu florescu Jan 15 '12 at 10:56
-
2this will tar and gzip it in a single command. If you wish you can do it seperately as well – daya Jan 15 '12 at 10:58
-
1The link is broken – Justin Jul 22 '16 at 16:31
6
You either need to redirect that output to your tarball name as in:
tar -c abc tt zz > tarball.tar
(Careful, that will overwrite tarball.tar if it's already there) or you need to use the -f flag for tar and specify a filename as in:
tar -cf tarball.tar abc tt zz
d34dh0r53
- 381
- 1
- 3
-
1
-
4if you add the `-z` flag to the tar command it will tell it to use gzip compression (e.g. `tar -czf tarball.tar.gz abc tt zz`), `-j` will use bzip2 (e.g. `tar -cjf tarball.tar.bz2 abc tt zz`). The way that tar handles it's output is the same whether or not compression is used. Without the `-f` it goes to `stdout`. – d34dh0r53 Jan 15 '12 at 11:01