环境:
SUSE 11
#查找当前目录下大小大于1G的文件
find . -type f -size +1G -print0|xargs -0 ls -lh
#查找当前目录下的目录文件大小,到下一级目录为止
du -h --max-depth=1 | sort -n
环境:
SUSE 11
#查找当前目录下大小大于1G的文件
find . -type f -size +1G -print0|xargs -0 ls -lh
#查找当前目录下的目录文件大小,到下一级目录为止
du -h --max-depth=1 | sort -n
本文标题:常用Shell命令(非基础命令)
本文链接:https://www.haomeiwen.com/subject/ytmxiktx.html
网友评论