文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>解压脚本

解压脚本

时间:2008-05-01  来源:剑心通明

<IFRAME name=google_ads_frame marginWidth=0 marginHeight=0 src="http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-4117525570087365&amp;dt=1209632842453&amp;lmt=1209308566&amp;output=html&amp;slotname=9298919995&amp;correlator=1209632842421&amp;url=http%3A%2F%2Fwww.bsdlover.cn%2Fhtml%2F79%2Fn-779.html&amp;ref=http%3A%2F%2Fwww.bsdlover.cn%2Fhtml%2F6%2Fcategory-catid-6-page-2.html&amp;frm=0&amp;cc=100&amp;ga_vid=3575145176550936600.1209632842&amp;ga_sid=1209632842&amp;ga_hid=1177457741&amp;flash=9.0.115.0&amp;u_h=768&amp;u_w=1024&amp;u_ah=715&amp;u_aw=1024&amp;u_cd=32&amp;u_tz=480&amp;u_java=true" frameBorder=0 width=250 scrolling=no height=250 allowTransparency></IFRAME> 特别感谢作者:tram兄

代码:
#!/bin/bash
UNPACK=1
if [ ${1##*.} = bz2 ] ; then
        TEMP=${1%.*}
        if [ ${TEMP##*.} = tar ] ; then
                tar jxvf $1
                UNPACK=$?
                echo This is a tar.bz2 package
        else
                bunzip2 $1
                UNPACK=$?
                echo This is a bz2 package
        fi
fi

if [ ${1##*.} = gz ] ; then
        TEMP=${1%.*}
        if [ ${TEMP##*.} = tar ] ; then
                tar zxvf $1
                UNPACK=$?
                echo This is a tar.gz package
        else
                gunzip $1
                UNPACK=$?
                echo This is a gz package
        fi
fi

if [ ${1##*.} = tar ] ; then
        tar xvf $1
        UNPACK=$?
        echo This is a tar package
fi

if [ $UNPACK = 0 ] ; then
        echo Success!
else
        echo Maybe it is not a package or the package is damaged?
fi
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载