Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
/usr/lpp/diagnostics/bin/uesensor -l >>/tmp/temp.out
temp=`grep Degrees /tmp/temp.out`
count=`grep Degrees /tmp/temp.out |cut -c11-13`
if [ "$count" -ge 35 ]; then
/usr/bin/mail -c "other@yourcompany.com" you@yourcompany.com < /tmp/temp.out
fi
Mike
"A foolproof method for sculpting an elephant: first, get a huge block of marble, then you chip away everything that doesn't look like an elephant."
[URL unfurl="true"]http://www.airport-parking-site.co.uk/[/URL]
/usr/lpp/diagnostics/bin/uesensor -l >>/tmp/temp.out
temp=`grep Degrees /tmp/temp.out`
count=`grep Degrees /tmp/temp.out |cut -c11-13`
if [ "$count" -ge 35 ]; then
/usr/bin/mail -c "other@yourcompany.com" you@yourcompany.com < /tmp/temp.out
fi