環(huán)境:
SUSE 11
#查找當前目錄下大小大于1G的文件
find . -type f -size +1G -print0|xargs -0 ls -lh
#查找當前目錄下的目錄文件大小城侧,到下一級目錄為止
du -h --max-depth=1 | sort -n
環(huán)境:
SUSE 11
#查找當前目錄下大小大于1G的文件
find . -type f -size +1G -print0|xargs -0 ls -lh
#查找當前目錄下的目錄文件大小城侧,到下一級目錄為止
du -h --max-depth=1 | sort -n