美文网首页
常用Shell命令(非基础命令)

常用Shell命令(非基础命令)

作者: sunland_0416 | 来源:发表于2020-11-17 14:16 被阅读0次

    环境:
    SUSE 11

    #查找当前目录下大小大于1G的文件
    find . -type f -size +1G -print0|xargs -0 ls -lh
    #查找当前目录下的目录文件大小,到下一级目录为止
    du -h --max-depth=1 | sort -n
    

    相关文章

      网友评论

          本文标题:常用Shell命令(非基础命令)

          本文链接:https://www.haomeiwen.com/subject/ytmxiktx.html