我正在尝试编写一个计算目录大小的脚本,如果大小小于10GB,则大于2GB的脚本会执行一些操作。我在哪里需要提及我的文件夹名称?
# 10GB
SIZE="1074747474"
# check the current size
CHECK="`du /data/sflow_log/`"
if [ "$CHECK" -gt "$SIZE" ]; then
echo "DONE"
fi
答案 0 :(得分:514)
你可以这样做:
du -h your_directory
将为您提供目标目录的大小。
如果您想要简短的输出,du -hcs your_directory
很不错。
答案 1 :(得分:125)
如果您只想查看文件夹大小而不是子文件夹,可以使用:
du -hs /path/to/directory
<强>更新强>
您应该知道du
显示已用磁盘空间;而不是文件大小。
如果您想查看实际文件大小的总和,可以使用--apparent-size
。
--apparent-size
print apparent sizes, rather than disk usage; although the apparent size is usually smaller, it may be larger due to holes in ('sparse')
files, internal fragmentation, indirect blocks, and the like
当然,脚本中不需要-h
(人类可读)选项。
相反,您可以使用-b
更轻松地在脚本内部进行比较。
但您应该注意-b
本身适用--apparent-size
。它可能不是你需要的。
-b, --bytes
equivalent to '--apparent-size --block-size=1'
所以我认为,您应该使用--block-size
或-B
#!/bin/bash
SIZE=$(du -B 1 /path/to/directory | cut -f 1 -d " ")
# 2GB = 2147483648 bytes
# 10GB = 10737418240 bytes
if [[ $SIZE -gt 2147483648 && $SIZE -lt 10737418240 ]]; then
echo 'Condition returned True'
fi
答案 2 :(得分:24)
使用摘要(-s
)和字节(-b
)。您可以使用cut
剪切摘要的第一个字段。把它们放在一起:
CHECK=$(du -sb /data/sflow_log | cut -f1)
答案 3 :(得分:22)
要获得目录的大小,仅此而已:
du --max-depth=0 ./directory
输出看起来像
5234232 ./directory
答案 4 :(得分:11)
如果您只想查看文件夹的聚合大小,可能是MB或GB格式,请尝试以下脚本
$du -s --block-size=M /path/to/your/directory/
答案 5 :(得分:4)
要检查目录中所有目录的大小,可以使用:
du -h --max-depth=1
答案 6 :(得分:3)
# 10GB
SIZE="10"
# check the current size
CHECK="`du -hs /media/662499e1-b699-19ad-57b3-acb127aa5a2b/Aufnahmen`"
CHECK=${CHECK%G*}
echo "Current Foldersize: $CHECK GB"
if (( $(echo "$CHECK > $SIZE" |bc -l) )); then
echo "Folder is bigger than $SIZE GB"
else
echo "Folder is smaller than $SIZE GB"
fi
答案 7 :(得分:3)
如果有帮助,您还可以在.bashrc
或.bash_profile
中创建别名。
function dsize()
{
dir=$(pwd)
if [ "$1" != "" ]; then
dir=$1
fi
echo $(du -hs $dir)
}
这将打印当前目录的大小或您作为参数传递的目录。