how to unzip *.bz2 file? wget http://dlib.net/files/shape_predictor_68_face_landmarks.dat.bz2 unzip bzip2 -d shape_predictor_68_face_landmarks.dat.bz2 or bunzip2 shape_predictor_68_face_landmarks.dat.bz2 re 1.baidubaike; end…
Linux系统没有自带的压缩解压工具:需要我们自己安装:当用到zip或者unzip如果没有安装就会出现unzip: Command Not Found 或 zip: Command Not Found;出现这个是因为没有安装unzip和zip: 1.apt-get安装: apt-get install zip 2.yum安装: yum install -y unzip zip 命令实例: 1.把/home目录下面的mydata目录压缩为mydata.zip cd /home #进入/home目录…
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…