Check folder size in Bash

前端 未结 8 815
情深已故
情深已故 2020-12-12 08:50

I\'m trying to write a script that will calculate a directory size and if the size is less than 10GB, and greater then 2GB do some action. Where do I need to mention my fol

8条回答
  •  甜味超标
    2020-12-12 09:34

    if you just want to see the folder size and not the sub-folders, you can use:

    du -hs /path/to/directory
    

    Update:

    You should know that du shows the used disk space; and not the file size.

    You can use --apparent-size if u want to see sum of actual file sizes.

    --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
    

    And of course theres no need for -h (Human readable) option inside a script.

    Instead You can use -b for easier comparison inside script.

    But You should Note that -b applies --apparent-size by itself. And it might not be what you need.

    -b, --bytes
          equivalent to '--apparent-size --block-size=1'
    

    so I think, you should use --block-size or -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
    

提交回复
热议问题