Kaydet (Commit) 4a5ab81b authored tarafından Guido van Rossum's avatar Guido van Rossum

posix -> os

üst 3a585bb9
#! /usr/local/python
# Format du output in a tree shape
import posix, string, sys, path
import os, string, sys
def main():
p = posix.popen('du ' + string.join(sys.argv[1:]), 'r')
p = os.popen('du ' + string.join(sys.argv[1:]), 'r')
total, d = None, {}
for line in p.readlines():
[num, file] = string.split(line)
......@@ -36,7 +36,7 @@ def show(total, d, prefix):
list.append((tsub, key))
if tsub is not None: sum = sum + tsub
if sum < total:
list.append((total - sum, '.'))
list.append((total - sum, os.curdir))
list.sort()
list.reverse()
width = len(`list[0][0]`)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment