shellでHDD使用率の20%以上のデバイスと具体的な使用方法

shellコード:
#!/bin/bash

df | sed 1d > /tmp/startnews24_hddres.txt
#df | grep -v “Use" > /tmp/startnews24_hddres.txt

echo -e “\033[31mDisk Usage(Use > 20%):\033[0m"
while read loop ;do
[ `echo $loop | tr -s ' '| cut -d ' ' -f5 | tr -d '%’ | grep -v “Use"` -gt 20 ] && \
echo $loop | tr -s ' '| cut -d ' ' -f1,5
done < /tmp/res.txt

rm -f /tmp/startnews24_hddres.txt

shellscript

Posted by arkgame