07-15-2013, 08:29 AM
nicely done!
quick suggestion, though: instead of piping grep into cut, and then into cut again, i would suggest using something like:
quick suggestion, though: instead of piping grep into cut, and then into cut again, i would suggest using something like:
Code:
awk '/Temperature/ {printf("%d", $5); }'