Answers for "does a tar file compress data"

23

tar compress

tar -czvf name-of-archive.tar.gz /path/to/directory-or-file
Posted by: Guest on March-11-2020
13

tar compress

# compress
tar czvf < archive_name >.tar.gz < path >
# extract
tar xzvf < archive_name >.tar.gz
tar xzvf < archive_name >.tar.gz  -C /home/usera/tmp
Posted by: Guest on January-17-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language