socialnerds/hive
socialnerds
/
hive
Archived
1
0
Fork 0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
hive/df_check.py

23 lines
433 B
Python
Executable File

#!/usr/bin/python2.7
import os
path=("/boot", "/", "/home/")
print "mountpoints\tfree megabytes"
print "------------------------------"
for mountpoint in path:
if os.path.ismount(mountpoint):
fs = os.statvfs(mountpoint)
freembytes = fs.f_bavail * fs.f_bsize / 1024**2.0
print "%s\t\t%.1f MB" %(mountpoint, freembytes)
else:
print "error: given path is not a mountpoint"
# end of file