linux & zip & tar https://zzk.cnblogs.com/s?w=blog%3Axgqfrms%20zip # zip -r 递归 file_name.zip folder_name/* 通配符 # -r 递归 # file_name.zip 压缩后的文件名 # folder_name/* 要压缩后的文件夹名,* 通配符 $ zip -r apitool-2018-11-22.zip apitool/* # all files in folder $ zip -r
zip zip 命令基本格式为: zip options archive inpath inpath ... archive 是 .zip 文件(新的或已经存在的). inpath 是需要打包的目录或文件. 打包文件 zip -r foo.zip foo bar 删除文件 zip -d foo.zip foo/hello.txt unzip 解压到指定目录 unzip -d bar foo.zip
zip 压缩命令:(可压缩文件或目录) 压缩文件: zip new_name.zip file_name unzip name.zip 解压 压缩文件或目录: 指定解压位置: unzip name.zip -d dir_name unzip -l name.zip 查看压缩文件里的文件 tar 打包命令:打包文件或目录 tar -cvf name.tar file_name 打包 tar -xvf name.tar 解包 同时打包文件和目录: tar -cvf nam
zip常见命令参数 Usage: zip [-options] [-b path] [-t mmddyyyy] [-n suffixes] [zipfile list] [-xi list] The default action is to add or replace zipfile entries from list, which can include the special name - to compress standard input. If zipfile and list ar