最佳答案
我试图写一个脚本,将计算一个目录大小,如果大小小于10GB,然后大于2GB做一些操作。我需要在哪里提到我的文件夹名称?
# 10GB
SIZE="1074747474"
# check the current size
CHECK="`du /data/sflow_log/`"
if [ "$CHECK" -gt "$SIZE" ]; then
echo "DONE"
fi