benolding: If you try the same command now, does it work?
If not, the output of "df -k" would help.
Those numbers are taken from "df" commands.
Total and Used are from this command:
Code: Select all
df -k /var/hda/files/drives/drive2/gh | awk '{print $(NF-4),$(NF-3)}' | tail -1
which should show the 5th and 4th from last columns, which should be the total and used columns.
And the free is from this command, the result of which is cached and reused for 15 seconds before it's refreshed:
Code: Select all
df -k /var/hda/files/drives/drive2/gh 2>&1 | grep '%' | grep -v "^df: .*: No such file or directory$" | awk '{print $(NF),$(NF-2)}'
which should show the mount point, and the 3rd from last column (available).