///
Search
🌡️

Disk Size 80% 이상 점검

#!/bin/ksh \df -k | grep 'c.d.s.' > /tmp/.tmp1 awk '($3 / $2) * 100 > 80 {print $6}' /tmp/.tmp1
JavaScript
복사