systemsadmin3000
Technical User
I'm running SCO Unixware 7.1.1. So far i have the following script to report on the file systems that are over 25%
#In this example the script will display those systems over 25%
df -k|awk '{if(int($5) >25) {print $1" ---- "$5 " mount pt: " $6}}'
How do i incorporate a scipt to send this result in an email? Any help would be appreciated
#In this example the script will display those systems over 25%
df -k|awk '{if(int($5) >25) {print $1" ---- "$5 " mount pt: " $6}}'
How do i incorporate a scipt to send this result in an email? Any help would be appreciated