Server :
Apache
System :
Linux server1.cbinetwhm.bi 4.18.0-553.123.1.el8_10.x86_64 #1 SMP Tue May 5 04:00:43 EDT 2026 x86_64
User :
fenacobu (1017)
PHP Version :
8.1.34
Disable Functions :
NONE
Current Directory :
/opt/
Directory Status:
Not Writeable | Document Root:
Writeable
Upload File
Viewing: //opt/disk4.sh
#!/bin/bash
# www.fduran.com
# script that will send an email to EMAIL when disk use in partition PART is bigger than %MAX
# adapt these 3 parameters to your case
MAX=20
EMAIL=anthony@cbinet.net
PART=sda1
USE=`df -h |grep $PART | awk '{ print $5 }' | cut -d'%' -f1`
if [ $USE -gt $MAX ]; then
# echo "Percent used: $USE" | mail -s "Running out of disk space" $EMAIL
echo "Percent used: $USE" | mail -s "Running out of disk space" anthony@cbinet.net
fi
Cyb3r Drag0nz Team • Google Edition