What is the command in unix to do tar on a specific folder.
|
|
|||||||||
|
closed as not programming related by ephemient, Alex Martelli, Adam Rosenfield, Greg Hewgill, gnovice Jun 23 at 2:32 |
|
|
$ tar -czvf tarfile.tar.gz /path/to/folder Or, if you think you need just a little more compression: $ tar -cjvf tarfile.tar.bzip2 /path/to/folder People frequently forget the bzip2 option, and it does usually compress better than gnuzip. |
|||
|
|
|
|
Something like this should do the trick:
This will create a tar image of "folder" and put it in the file "tarfile" The "cf" are the options to tar. "c" means that you want to create a new tar image "f" means that the next word will be the name of the file for the tar image. I didn't use it in my example, but some people like to use the "v" option also. This will make tar list every file as it archives it. It's a way to track its progress. One minor gotcha to be aware of is that if you use a path for the folder name, such as:
then when you untar the image all of the files will recreate (or use) the same path for the new files. (i.e., path/to/my/folder) in this example. In some cases this is good. In others it creates a bunch of intermediate directories that you may not care about. |
||
|
|
|
|
An example of exactly what you're looking for is at the top of the man page. If you're new to unix remember that you should give the man page a look as they will often have nice examples. You can also find these man pages on the internet usually by googling the operation. But be wary what man you search for! |
||
|
|
|
|
|
||
|
|
|
|
you can tar-zip it too
c - create v - verbose (not necessary, but it tells you which files are included into the archive) f - output to file z - zip the output replace c for x and remove path - that will do reverse. Man page explains it all :) |
|||
|
|
