📜  终端 zip - Shell-Bash 代码示例

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

代码示例1
# to compress
tar -zcvf archive_name.tar.gz folder_to_compress
# to extract
tar -zxvf archive_name.tar.gz

# the "v" flag is for verbose and is not required