「shell」ディスクの使用状況を調べるコード

サンプルコード
#!/bin/bash
IP=`ifconfig eth0|sed -n '2p’|awk '{print $2}’|cut -c 6-`
SPACE=`df |sed -n '/\/$/p’|awk '{print $4}’|sed 's/%//’`
if [ $SPACE -ge 90 ];then
echo “The /  disk is full"
fi

Linux

Posted by arkgame