“Tar wyklucz katalog” Kod odpowiedzi

Tar wyklucz katalog

tar -cvf backup.tar --exclude="public_html/template/cache" public_html/
Zany Zebra

Folder GZIP z TAR i wyklucz katalogi

# 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
JoeMoe

TAR wyklucz katalogi z pliku

tar -cvf backup.tar --exclude="log" --exclude="cache" public_heml/
Zany Zebra

TAR wyklucz katalogi z pliku

tar -cvf backup.tar -X exclude_directory.txt public_html/
Zany Zebra

Odpowiedzi podobne do “Tar wyklucz katalog”

Pytania podobne do “Tar wyklucz katalog”

Więcej pokrewnych odpowiedzi na “Tar wyklucz katalog” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu