码迷,mamicode.com
首页 > 系统相关 > 详细

linux下面的智能解压脚本smart解压

时间:2016-05-22 15:12:17      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:

file命令可以辨别出一个给定文件的文件类型,如:file lf.gz,其输出结果为:

lf.gz: gzip compressed data, deflated, original filename,

last modified: Mon Aug 27 23:09:18 2001, os: Unix

我们利用这点写了一个名为smartzip的脚本,该脚本可以自动解压bzip2, gzipzip 类型的压缩文件:

 #!/bin/bash

 

 ftype="$(file "$1")"

 case "$ftype" in

 "$1: Zip archive"*)

    unzip "$1" ;;

 "$1: gzip compressed"*)

    gunzip "$1" ;;

 "$1: bzip2 compressed"*)

    bunzip2 "$1" ;;

 *) echo "File $1 can not be uncompressed with smartzip";;

 esac

你可能注意到上面使用了一个特殊变量$1,该变量包含有传递给该脚本的第一个参数值。也就是说,当我们运行:

smartzip articles.zip

$1 就是字符串 articles.zip

linux下面的智能解压脚本smart解压

标签:

原文地址:http://www.cnblogs.com/sengling/p/5516742.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!