-
-
Save naqirizvi/a41709a56a6a938aa26e251e32bf927f to your computer and use it in GitHub Desktop.
Cloudways Disk Space Details/Quota Per Application
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess | |
proc = subprocess.Popen("du -sh ./applications/* | sort -hr", shell=True, stdout=subprocess.PIPE) | |
for line in iter(proc.stdout.readline,''): | |
line = line.split() | |
size = line[0] | |
app_dir = line[1] | |
app_name = app_dir[15:] | |
app_conf = "/home/master/applications/%s/conf/server.apache" % (app_name) | |
real_name = subprocess.check_output(['tail', '-1', app_conf]) | |
real_name = real_name.rsplit(None, 2)[-2] | |
print "%-8s %-8s %-8s" % (size,app_name,real_name ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment