繁体   English   中英

在python中复制修改后的du命令

[英]Replicate a modified du command in python

这是我在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

您可以使用此python程序。 它不会在外壳中产生任何子进程。

 #!/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()

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM