- Notifications
You must be signed in to change notification settings - Fork 31.8k
/
Copy pathdutree.py
executable file
·60 lines (54 loc) · 1.58 KB
/
dutree.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#! /usr/bin/env python
# Format du output in a tree shape
importos, sys, errno
defmain():
p=os.popen('du '+' '.join(sys.argv[1:]), 'r')
total, d=None, {}
forlineinp.readlines():
i=0
whileline[i] in'0123456789': i=i+1
size=eval(line[:i])
whileline[i] in' \t': i=i+1
filename=line[i:-1]
comps=filename.split('/')
ifcomps[0] =='': comps[0] ='/'
ifcomps[len(comps)-1] =='': delcomps[len(comps)-1]
total, d=store(size, comps, total, d)
try:
display(total, d)
exceptIOError, e:
ife.errno!=errno.EPIPE:
raise
defstore(size, comps, total, d):
ifcomps== []:
returnsize, d
ifnotd.has_key(comps[0]):
d[comps[0]] =None, {}
t1, d1=d[comps[0]]
d[comps[0]] =store(size, comps[1:], t1, d1)
returntotal, d
defdisplay(total, d):
show(total, d, '')
defshow(total, d, prefix):
ifnotd: return
list= []
sum=0
forkeyind.keys():
tsub, dsub=d[key]
list.append((tsub, key))
iftsubisnotNone: sum=sum+tsub
## if sum < total:
## list.append((total - sum, os.curdir))
list.sort()
list.reverse()
width=len(repr(list[0][0]))
fortsub, keyinlist:
iftsubisNone:
psub=prefix
else:
printprefix+repr(tsub).rjust(width) +' '+key
psub=prefix+' '*(width-1) +'|'+' '*(len(key)+1)
ifd.has_key(key):
show(tsub, d[key][1], psub)
if__name__=='__main__':
main()