Gzip - How do I tar a directory of files and folders without including the directory itself

De openkb
Aller à : Navigation, rechercher

Sommaire

Questions

I typically do:

tar -czvf my_directory.tar.gz my_directory

What if I just want to include everything (including any hidden system files) in my_directory, but not the directory itself? I don t want:

my_directory
   --- my_file
   --- my_file
   --- my_file

I want:

my_file
my_file
my_file

Answers

cd my_directory/ && tar -zcvf ../my_dir.tgz . && cd .. 

should do the job in one line. It works well for hidden files as well. "*" doesn t expand hidden files by path name expansion at least in bash. Below is my experiment:

$ mkdir my_directory
$ touch my_directory/file1
$ touch my_directory/file2
$ touch my_directory/.hiddenfile1
$ touch my_directory/.hiddenfile2
$ cd my_directory/ && tar -zcvf ../my_dir.tgz . && cd ..
./
./file1
./file2
./.hiddenfile1
./.hiddenfile2
$ tar ztf my_dir.tgz
./
./file1
./file2
./.hiddenfile1
./.hiddenfile2

Source

License : cc by-sa 3.0

http://stackoverflow.com/questions/939982/how-do-i-tar-a-directory-of-files-and-folders-without-including-the-directory-it

Related

Outils personnels
Espaces de noms

Variantes
Actions
Navigation
Outils