可以使用find命令,如find /path/to/directory -type f -size +1G来查找大于1G的文件。
112K /home/daygeek/Documents/user-friendly-zorin-os-15-has-been-released-ZorinAutoTheme.png via: https://www.2daygeek.com/find-get-size-of-directory-folder-linux-disk-usage-du-command/ 网页标题:关于Linux系统中获取目录大小的一些操作 网站URL:http://www.3aiso.com/qtweb/news3/6353.html 网站...
-b或-bytes 显示目录或文件大小时,以byte为单位。 -c或–total 除了显示目录或文件的大小外,同时也显示所有目录或文件的总和。...-l或–count-links 重复计算硬件连接的文件。 -L或–dereference 显示选项中所指定符号连接的源文件大小。...-s或–summarize 仅显示...
格式:find ... -exec 命令{} \; 命令:几乎所有命令都可执行但是find不支持别名 [root@dazhu200 ~]# find ./ -type f -name "nu*" -exec cp {} /tmp \; [root@dazhu200 ~]# ll /tmp|grep “nu*” ls: cannot access nu*: No such file or directory /tmp: total 12 -rw-r--r-- 1...
du命令 参考文章:how to check directory size in Linux 用于显示目录或文件的大小。...显示当前目录文件或者文件占用空间:du 显示指定文件或文件夹的大小:du test.txt 方便阅读的格式查看目录所占空间情况:du -h test 仅显示当前文件夹的总计:du -s * 以方便阅读的方式查看指定目录层级的空间占用情况...:du...
使用find <需要清理删除小文件的目录> -type f -delete命令直接删除大批小文件。 使用man find查看find命令相关的参数说明如下: -type c File is of type c: b block (buffered) special c character (unbuffered) special d directory p named pipe (FIFO) ...
在root目录及其1层深的子目录中查找passwd. (例如root — level 1, and one sub-directory — level 2) # find -maxdepth 2 -name passwd ./etc/passwd 1. 2. 在root目录下及其最大两层深度的子目录中查找passwd文件. (例如 root — level 1, and two sub-directories — level 2 and 3 ) ...
The du command will recursively traverse any sub directories and display the amount of space used. The total displayed for any given directory is the space used by the directory itself and any subdirectories. du: without seeing the details of the various subdirectories To find out the total am...
1.find 2.grep 过滤查找及“|”管道符 3.which 六、压缩和解压类 1.gzip/gunzip压缩 2.zip/unzip压缩 3.tar 七、进程线程类 1.ps 2.kill 3.netstat 八、crond系统定时任务 1.crontab 九、补充 1、nohup 2、zcat 3、uniq 4、dirname 5、seq 6、export ...
The total displayed for any given directory is the space used by the directoryitself and any subdirectories. du: without seeing the details of the various subdirectories To find out the total amount of disk space used without seeing the details of the various subdirectories, use...