Answers for "tar gzip file contents windows"

6

gzip folder with tar

# gzip my-folder-name
#
# flags:
# 	z = filter the archive through gzip
# 	c = create a new archive
# 	v = verbosely list files processed
# 	f = use archive file or device ARCHIVE
#
# Example:
tar -zcvf my-filename.tar.gz my-folder-name
Posted by: Guest on May-20-2020
8

how to tar and gzip a file in linux

tar -xvzf community_images.tar.gz
Posted by: Guest on May-20-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language