Answers for "tar exclude directory"

0

tar exclude directory

$ tar --exclude='./folder' --exclude='./upload/folder2' -zcvf /backup/filename.tgz .
Posted by: Guest on August-28-2020
0

gzip folder with tar and exclude directories

# create a gzip archive of my-backup-folder
# but exclude all node_module directories
# flags:
#	--exclude = exclude files, given as a PATTERN
# 	-c = create a new archive
# 	-z = filter the archive through gzip
# 	-f = use archive file or device ARCHIVE
#
# IMPORTANT NOTE:
# the exclude flag needs to come first to work
tar --exclude "node_modules" -czf backup.tar.gz /my-backup-folder
Posted by: Guest on May-20-2020
0

tar exclude directories from a File

tar -cvf backup.tar --exclude="log" --exclude="cache" public_heml/
Posted by: Guest on August-10-2021
0

tar exclude directory

tar -cvf backup.tar --exclude="public_html/template/cache" public_html/
Posted by: Guest on August-10-2021
0

tar exclude directories from a File

tar -cvf backup.tar -X exclude_directory.txt public_html/
Posted by: Guest on August-10-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language