• 🌙 Community Spirit

    Ramadan Mubarak! To honor this month, Crax has paused NSFW categories. Wishing you peace and growth!

Code espace DD toutes les 10s (1 Viewer)

Currently reading:
 Code espace DD toutes les 10s (1 Viewer)

Recently searched:

Tipoine08

Member
LV
2
Joined
Feb 1, 2023
Threads
10
Likes
5
Awards
6
Credits
3,432©
Cash
0$
#!/bin/bash

# Ce script vérifie l'utilisation du disque dur toutes les 10 secondes et envoie une notification à l'utilisateur si l'utilisation dépasse 90%

while true; do
DISK_USAGE=$(df / | awk 'END{ print $5 }' | sed 's/%//')
if [ $DISK_USAGE -gt 90 ]; then
notify-send "Attention : l'utilisation du disque dur est de $DISK_USAGE% !"
fi
sleep 10
done
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Tips
Recently searched:

Similar threads

Users who are viewing this thread

Top Bottom