I need some help tweaking my code to look for another attribute in this unix df output:
df
Ex.
Filesystem Size Used Avail Capacity
The easy perl way:
perl -MFilesys::Df -e 'print df("/tmp")->{bavail}, "\n"'