您好,登錄后才能下訂單哦!
#!/bin/sh mkdir /home/zhengyk/Desktop/tmp #創(chuàng)建臨時(shí)文件夾,用來(lái)存放解壓后的文件 #mkdir /home/zhengyk/Desktop/local #創(chuàng)建臨時(shí)文件夾,用來(lái)存放過(guò)濾結(jié)果 list_alldir(){ for file in $1/* do if [ -d $file ]; then list_alldir $file else filename=${file##*/} # 從路徑中取出文件名及后綴 echo "$filename" if [[ `echo $filename | awk -F'.' '$0~/.*123.*zip/{print $3}'` = "zip" ]] # "123"為文件名里的子串 #elif [[ `echo $file | awk -F'.' '$0~/.*123.*zip/{print ${file##*.}}'` = "zip" ]] then #tar jxf $file -C /home/zhengyk/Desktop/tmp #解壓文件ddd unzip -o $file -d /home/zhengyk/Desktop/tmp #解壓文件 #grep_word /home/zhengyk/Desktop/tmp #執(zhí)行過(guò)濾關(guān)鍵字的函數(shù) #rm -rf /home/zhengyk/Desktop/tmp/* #清理現(xiàn)場(chǎng),為解壓下一個(gè)文件做準(zhǔn)備! echo "$file ..........ok!" #顯示被處理的bz2文件! fi fi done } grep_word(){ for fileb in $1/* do if [ -f $fileb ]; then # “bkeep”是你想要過(guò)濾的關(guān)鍵字,根據(jù)實(shí)際,自行設(shè)定 grep -H "t" $fileb >> /home/zhengyk/Desktop/tmp.txt #H 結(jié)果中顯示文件名,方便我們閱讀! else grep_word $fileb fi done } if [ $# -gt 0 ] then list_alldir "$1" else echo "please input:./list_alldir.sh dirpath" fi
參考鏈接:http://www.360doc.com/content/10/0928/16/3234041_57087955.shtml
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。