美文网首页
linux各种命令

linux各种命令

作者: wenny_6081 | 来源:发表于2019-01-22 18:30 被阅读0次

    查机器:
    查看磁盘大小 df -hl
    查看内存大小 free -hm
    查看cpu核心数及型号 cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c

    平时用的:
    查看文件大小 du -h --max-depth=1 *


    image.png

    显示有IO操作的进程 iotop -oP
    新建文件夹 mkdir filename
    移动文件 mv 原来的文件 新的目录

    删除 .DS_Store 文件:
    删除项目中的所有.DS_Store。这会跳过不在项目中的 .DS_Store
    1.find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
    将 .DS_Store 加入到 .gitignore
    2.echo .DS_Store >> ~/.gitignore

    相关文章

      网友评论

          本文标题:linux各种命令

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