📜  带有 tar 的 gzip 文件夹 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:28.984000             🧑  作者: Mango

代码示例1
# 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