• Linux du命令查看文件夹大小并排序


    du -hs * | sort -hr | head
    
    70M     chapter04
    30M     chapter02
    580K    chapter03
    48K     chapter06
    48K     chapter01
    36K     chapter05
    16K     README.md
    8.0K    chapter07
    0       requirements.txt
    
    # head是显示前10个
    
    du --help
    -h, --human-readable  print sizes in human readable format (e.g., 1K 234M 2G)
    -s, --summarize       display only a total for each argument
    
    sort --help
    -h, --human-numeric-sort    compare human readable numbers (e.g., 2K 1G)
    -r, --reverse               reverse the result of comparisons
    
    # 从大到小排序,可以用--max-depth指定文件夹深度
    du --max-depth 1 -h | sort -hr
    
    # 指定目录:
    du /tmp -hs * | sort -hr

    如果没有一直坚持,也不会有质的飞跃,当生命有了限度,每个人的价值就会浮现。

    船长博客,期待共同交流提高!

    本文如对您有帮助,记得点击右下边小球【赞一下】,热烈期待您关注博客 n(*≧▽≦*)n

    0成本创业_月入5000被动收入

  • 相关阅读:
    python之基础2
    python之文件2
    python之入门2
    python之入门
    python之多并发2
    python之面向对象2
    python之MySQL系列
    python之文件
    python之多并发
    Google身份验证器详解
  • 原文地址:https://www.cnblogs.com/v5captain/p/14578992.html
Copyright © 2020-2023  润新知