美文网首页
linux 常用命令

linux 常用命令

作者: Lazy_Caaat | 来源:发表于2019-10-01 10:38 被阅读0次

    nautilus . 以图形界面打开当前文件夹
    find . -name 123 从当前目录搜索匹配文件

    在当前目录下 查找"hello,world!"字符串:

    grep -rn "hello,world!" *

    * : 表示当前目录所有文件,也可以是某个文件名

    -r 是递归查找

    -n 是显示行号

    -R 查找所有文件包含子目录

    -i 忽略大小写

    相关文章

      网友评论

          本文标题:linux 常用命令

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