您好,登錄后才能下訂單哦!
這篇文章主要介紹shell如何查找當(dāng)前目錄下大于1M的文件,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
1、使用find的參數(shù)實(shí)現(xiàn)
代碼如下:
[root@xiaobb mnt]# find . -maxdepth 1 -size +1000000c
./sys.tar.gz
./install.tar.bz2
./CTeX_2.9.0.152_Full.exe
./php-5.3.6.tar.gz
[root@xiaobb mnt]# ls -lh
total 1.3G
-rw-r--r-- 1 root root 1.1G 2011-04-28 11:35 CTeX_2.9.0.152_Full.exe
drwxr-xr-x 19 root root 12K 2011-04-24 20:28 git
-rw-r--r-- 1 root root 135M 2011-03-18 07:00 install.tar.bz2
drwxrwxrwx 8 flash games 4.0K 2011-04-24 06:38 libevent-1.4.12-stable
-rw-r--r-- 1 root root 488K 2011-04-23 22:46 libevent-1.4.12-stable.tar.gz.gz
drwxr-xr-x 26 root root 4.0K 2011-04-24 21:14 linux-2.6
drwx------ 2 root root 16K 2011-03-10 05:56 lost+found
drwxr-xr-x 10 root root 4.0K 2010-10-22 02:18 mnt
drwxr-xr-x 8 1000 1000 4.0K 2011-04-24 05:51 nginx-0.8.54
-rw-r--r-- 1 root root 635K 2011-04-23 21:12 nginx-0.8.54.tar.gz
drwxr-xr-x 16 1005 1005 4.0K 2011-04-24 07:00 php-5.3.6
-rw-r--r-- 1 root root 14M 2011-04-23 16:04 php-5.3.6.tar.gz
drwxr-xr-x 8 root root 4.0K 2011-04-24 07:02 php-fpm-0.6-5.3.1
-rw-r--r-- 1 root root 415K 2011-04-20 22:08 php-fpm-0.6-5.3.1.zip
drwxr-xr-x 37 root root 4.0K 2011-04-24 20:40 progit
drwxr-xr-x 31 root wheel 4.0K 2011-04-28 05:36 sys
-rw-r--r-- 1 root root 19M 2009-07-13 22:38 sys.tar.gz
[root@xiaobb mnt]#
2、使用ls+awk組合管道
代碼如下:
[root@xiaobb mnt]# find . -maxdepth 1 -size +1000000c;
./sys.tar.gz
./install.tar.bz2
./CTeX_2.9.0.152_Full.exe
./php-5.3.6.tar.gz
[root@xiaobb mnt]# ls -l .|awk '{if($5>1000000) print R$8}'
CTeX_2.9.0.152_Full.exe
install.tar.bz2
php-5.3.6.tar.gz
sys.tar.gz
[root@xiaobb mnt]#
3、使用find+ll+awk組合(管道)
代碼如下:
[root@xiaobb mnt]# find ./ -name "*" -maxdepth 0 -exec ls -l {} \;|awk '{if($5>1000000) print $8}'
CTeX_2.9.0.152_Full.exe
install.tar.bz2
php-5.3.6.tar.gz
sys.tar.gz
[root@xiaobb mnt]#
[root@xiaobb mnt]# find . -maxdepth 1 -size +1000000c;
./sys.tar.gz
./install.tar.bz2
./CTeX_2.9.0.152_Full.exe
./php-5.3.6.tar.gz
以上是“shell如何查找當(dāng)前目錄下大于1M的文件”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(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)容。