Skip to content

Instantly share code, notes, and snippets.

View beisong7's full-sized avatar
๐Ÿš€
Bring me the sky...

Benjamin Isong beisong7

๐Ÿš€
Bring me the sky...
View GitHub Profile
@beisong7
beisong7 / system-ment.sh
Created January 10, 2025 01:59
system maintenance
#!/bin/bash
# Configuration
THRESHOLD_GB=20
ALERT_URL="https://example.com/alert"
# Function to check disk space
check_disk_space() {
free_space=$(df --output=avail -BG / | tail -1 | tr -d 'G')
echo "$free_space"