感谢支持
我们一直在努力

Linux Smart 解压文件

#!/bin/bash 
# 概要文件类型自动解压 
ftype=`file “$1″` 
case “$ftype” in 
    “$1: Zip archive”*) 
        if [ -z “$2” ]; then 
            unzip “$1” 
        else 
            unzip “$1” -d “$2” 
        fi 
        ;; 
    “$1: gzip compressed”*) 
        if [ -z “$2” ]; then 
            tar -zxvf “$1” 
        else 
            tar -zxvf “$1” -C “$2” 
        fi 
        ;; 
    “$1: bzip2 compressed”*) 
        if [ -z “$2” ]; then 
            tar -jxvf “$1” 
        else 
            tar -jxvf “$1” -C “$2” 
        fi 
        ;; 
    *) echo “File $1 can not be uncompressed with smartzip”;; 
esac 

赞(0) 打赏
转载请注明出处:服务器评测 » Linux Smart 解压文件
分享到: 更多 (0)

听说打赏我的人,都进福布斯排行榜啦!

支付宝扫一扫打赏

微信扫一扫打赏