Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to find files larger than 1m in the current directory by shell

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly introduces shell how to find files larger than 1m in the current directory, the article is very detailed, has a certain reference value, interested friends must read it!

1. Use the parameters of find to implement

The code is as follows:

[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. Use ls+awk composite pipe

The code is as follows:

[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 Run8}'

CTeX_2.9.0.152_Full.exe

Install.tar.bz2

Php-5.3.6.tar.gz

Sys.tar.gz

[root@xiaobb mnt] #

3. Use find+ll+awk combination (pipe)

The code is as follows:

[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

The above is all the contents of the article "how to find files larger than 1m in the current directory by shell". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report