Check folder size in Bash

前端 未结 8 808
情深已故
情深已故 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:45

    To check the size of all of the directories within a directory, you can use:

    du -h --max-depth=1

提交回复
热议问题