check drive space in linux code example
Example 1: linux check used space in folder
du -h --max-depth=1
Example 2: bash how to check free disk space in Linux
# Basic syntax:
df -h
# Where the -h flag ensures a "human readable" format
du -h --max-depth=1
# Basic syntax:
df -h
# Where the -h flag ensures a "human readable" format