Est ce que une ame charitable pourrait m'aider car je galere trop a faire ce script.....
Code: Select all
si espace disque restant < 25%
then
action a entreprendre (ca c bon je sais quoi faire ^^)
fin si
Moderator: PoToS @dmins CS
Code: Select all
si espace disque restant < 25%
then
action a entreprendre (ca c bon je sais quoi faire ^^)
fin si
Code: Select all
#!/bin/bash
HDD="/dev/sda1";
MAX=75;
if [ `df $HDD | cut -b 52-54 | tail -n 1` -gt $MAX ]; then
# action a entreprendre (ca c bon je sais quoi faire ^^)
echo oui
fi
Code: Select all
#!/bin/bash
HDD="/dev/sda2";
MAX=75;
var=$(df $HDD | cut -b 41-42 | tail -n 1)
echo $var
if [ `df $HDD | cut -b 41-42 | tail -n 1` -gt $MAX ]; then
echo oui
else
echo non
fi
Code: Select all
df $HDD | cut -b 41-42 | tail -n 1
Code: Select all
[root@xxx scripts]# sh testhd.sh
testhd.sh: line 9: [: -gt: unary operator expected
non
Code: Select all
#!/bin/bash
HDD="/dev/sda2";
MAX=75;
var=$(df $HDD | cut -b 41-42 | tail -n 1)
echo $var
if [ `df $HDD | tail -n 1 | sed 's/%//' | awk '{print $5}'` -gt $MAX ]; then
echo oui
else
echo non
fi
Code: Select all
#!/bin/bash
HDD="/dev/sda2";
MAX=75;
MYSPACE=`df $HDD | tail -n 1 | sed 's/%//' | awk '{print $5}'`;
if [ $MYSPACE -gt $MAX ]; then
echo oui
else
echo non
fi