博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux 不常用命令及命令组合
阅读量:5010 次
发布时间:2019-06-12

本文共 704 字,大约阅读时间需要 2 分钟。

  • lsof:list open files,
    • sudo lsof | grep deleted:则列出虽然被删除,但还处于打开状态的文件。注意,这些文件占用的空间,只有在这些文件关闭时,才会被释放。
  • md5sum:获得文件的 md5,以检查下载的文件是否正确;
    • sha256sum

1. 命令组合

  • du command: Estimate file space usage.
  • -h : Print sizes in human readable format (e.g., 10MB).
  • -S : Do not include size of subdirectories.
  • -s : Display only a total for each argument sort command : sort lines of text files.
  • -r : Reverse the result of comparisons.
  • -h : Compare human readable numbers (e.g., 2K, 1G).

    head : Output the first part of files.

  • 找出 Linux 系统中某目录下前 5 大目录

    # du -a /home | sort -n -r | head -n 5
  • 当前目录下占磁盘空间最大的目录

    # du -a | sort -n -r | head -n 5
  • 更好地可读性:

    # du -hs * | sort -rh | head -5

转载于:https://www.cnblogs.com/mtcnn/p/9421390.html

你可能感兴趣的文章
POJ 1860 Currency Exchange(SPFA 判断有无“正”环)
查看>>
广告地址屏蔽
查看>>
收缩SqlServer数据库日记方法
查看>>
每日英语:15 places to find inspiration
查看>>
学习方法--提问
查看>>
【转】每天一个linux命令(3):pwd命令
查看>>
merge-two-sorted-lists
查看>>
MySQL(3)
查看>>
poj1061——扩展gcd水题
查看>>
UVa400.Unix ls
查看>>
POJ 2299 Ultra-QuickSort 归并排序、二叉排序树,求逆序数
查看>>
Educational Codeforces Round 60 (Rated for Div. 2) C. Magic Ship
查看>>
Windows 2008 R2系统开机时如何不让Windows进行磁盘检测?
查看>>
WP7应用开发笔记(18) 本地化与多语言
查看>>
解决 .so文件64与32不兼容问题
查看>>
归并排序法
查看>>
【剑指offer】面试题26:复杂链表的复制
查看>>
spark开发生成EXE
查看>>
Vue 全家桶介绍
查看>>
WPF Bitmap转Imagesource
查看>>