Files
html/api/disk-check.sh
2026-04-12 22:57:03 +02:00

6 lines
115 B
Bash
Executable File

#!/bin/bash
echo "DISK:"
df -h / | tail -1
echo "BIGGEST:"
du -sh /var/log/ /tmp/ 2>/dev/null | sort -rh | head -5