This commit is contained in:
Sebastian
2024-03-19 06:28:02 +01:00
parent 3c32852fd9
commit 8da3e98c83

19
check-disk-space.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
# Threshold for disk usage percentage
threshold=90
# Get the list of mounted filesystems and their usage
filesystems=$(df -h --output=target,pcent | tail -n +2)
# Iterate over each line of the output
while IFS= read -r line; do
# Extract filesystem and usage percentage
filesystem=$(echo "$line" | awk '{print $1}')
usage=$(echo "$line" | awk -F'%' '{print $1}')
# Check if usage is above the threshold
if [ "$usage" -ge "$threshold" ]; then
echo "WARNING: Filesystem $filesystem is $usage% full!"
fi
done <<< "$filesystems"