1: 编写脚本


  1 [oracle@oracle oracle]$ vim unzip.sh
  2 ziphome=/u01/app/oracle
  3 ziplist=`du -a $ziphome |grep '\.zip$'| awk '{print $2}'`
  4 for loop in $ziplist
  5 do
  6 cd ${loop%/*}
  7 unzip -o $loop
  8 done
  9 [oracle@oracle oracle]$ chmod 775 unzip.sh
 10 [oracle@oracle oracle]$ ./unzip.sh


执行脚本视图:


linux 批量进行:解压缩某一类压缩文件类型的文件_其他

为人:谦逊、激情、博学、审问、慎思、明辨、 笃行
学问:纸上得来终觉浅,绝知此事要躬行
为事:工欲善其事,必先利其器。
转载请标注出处!