cli-tarHow do you tar multiple directories in Unix?
Tar is a command line utility used to create and manipulate tar archives in Unix systems.
To tar multiple directories in Unix, use the following command:
tar -cvf archive_name.tar dir1 dir2 dir3
This command will create a tar archive named archive_name.tar
containing the content of the directories dir1
, dir2
and dir3
.
The flags used in this command are:
-c
: create a new tar archive-v
: verbose output, display the progress of the archiving process-f
: specify the name of the tar archive
For more information, refer to the GNU tar manual.
More of Cli Tar
- How do I use the command line to tar and zip files?
- How do I use the Unix tar zip command?
- How do I use the command line to tar and zip a file?
- How do I use gzip, tar, and zip to compress files?
- How can I use tar commands to zip a file?
- How do I use the shell to tar and zip files?
- How do I use the command line to tar and zip a file?
- How do I use the command line to tar and zip a file?
- How do I use the command line to tar and distribute files?
- How do I create a tar.zip file in Unix?
See more codes...