unzip:unzip解压⽂件到指定⽬录1、把⽂件解压到当前⽬录下
unzip test.zip
2、如果要把⽂件解压到指定的⽬录下,需要⽤到-d参数。
unzip -d /temp test.zip
unzip -n test.zip
unzip -n -d /temp test.zip
4、只看⼀下zip压缩包中包含哪些⽂件,不进⾏解压缩
unzip -l test.zip
5、查看显⽰的⽂件列表还包含压缩⽐率
unzip -v test.zip
压缩包损坏6、检查zip⽂件是否损坏
unzip -t test.zip
7、将压缩⽂件test.zip在指定⽬录tmp下解压缩,如果已有相同的⽂件存在,要求unzip命令覆盖原先的⽂件unzip -o test.zip -d /tmp/
发布评论