在python中复制一个修改过的du命令

时间:2017-08-13 10:57:39

标签: python shell grep command

这是我在shell中执行的命令。我希望在Python中获得相同的结果。我可以使用os模块执行此操作吗?我在这里使用grep -v,因为一些文件名也有这种模式。请注意,我不想从shell调用它。

du -ah 2> >(grep -v "permission denied") |grep [1-9][0-9]G | grep -v [0-9][0-9]K|grep -v [0-9][0-9]M|sort -nr -k 1| head -50

1 个答案:

答案 0 :(得分:0)

你可以使用这个python程序。它不会在shell中生成任何子进程。

 #!/usr/bin/env python

 from __future__ import absolute_import
 from __future__ import print_function
 import subprocess
 import os
 import argparse

 def files_larger_than_no_child_process(min_bytes, count):
     """Return the top count files that are larger than the given min_bytes"""

     # A list that will have (size, name) tuples.
     file_info = []
     for root, dirs, files in os.walk("."):
         for f in files:
             file_path = os.path.abspath(os.path.realpath(os.path.join(root, f)))
             try:
                 size = os.path.getsize(file_path)
                 # Discard all smaller files than the given threshold
                 if size > min_bytes:
                     file_info.append((size,file_path))
             except OSError as e:
                 pass

     # Sort the files with respect to their sizes
     file_info = sorted(file_info, key=lambda x: x[0], reverse=True)

     # Print the top count entries
     for l in file_info[:count]:
         print(l[0], " ", l[1])

 def main():
     parser = argparse.ArgumentParser("""Prints the top files that are larger than the
         given bytes in the current directory recusrively.""")
     parser.add_argument("min_bytes",help="Print files larger than this value",
         type=int)
     parser.add_argument("count",help="Print at most the given number of files",
         type=int)
     args = parser.parse_args()


     files_larger_than_no_child_process(args.min_bytes, args.count)

 if __name__ == "__main__":
     main()
相关问题