码迷,mamicode.com
首页 > 其他好文 > 详细

批量解压个各种格式后缀的脚本

时间:2017-06-06 10:54:18      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:解压脚本

#!/bin/bash


cd /lamp


ls * > ./list.txt


for a in $(cat list.txt)

do

if [[ "$a" =~ "tar" ]]

then

tar -xf $a

elif [[ "$a" =~ "tgz" ]]

then

tar -xf $a

elif [[ "$a" =~ "gz" ]]

then

gunzip $a

elif [[ "$a" =~ "bz" ]]

then 

bunzip2 $a

elif [[ "$a" =~ "zip" ]]

then

unzip $a

else

echo "$a is not a zip file."

fi

done


本文出自 “凌宇的技术博客” 博客,谢绝转载!

批量解压个各种格式后缀的脚本

标签:解压脚本

原文地址:http://lampit.blog.51cto.com/12958178/1932528

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