美文网首页
Linux 查看文件内容

Linux 查看文件内容

作者: 我是付大善人 | 来源:发表于2019-10-20 14:40 被阅读0次

    [TOC]

    file 查看文件类型

    ➜  conan-english-episode git:(master) file initGit.sh
    initGit.sh: Bourne-Again shell script text executable, ASCII text
    ➜  conan-english-episode git:(master) file tool
    tool: directory
    

    cat 查看整个文件

    # 查看整个文件内容
    cat 文件名
    
    # cat -n 文件名:给所有的行加上行号
    car -n  test1
    
    # cat -b:指给有文本的行加上行号
    cat -b test1
    

    more

    more会以一页一页的显示文件内容.more命令从前向后读取文件,因此在启动时就加载整个文件。

    常用操作命令:

    • Enter 向下n行,需要定义。默认为1行
    • 空格键 向下滚动一屏
    • Ctrl+B 返回上一屏
    • = 输出当前行的行号
    • :f 输出文件名和当前行的行号
    • q 退出more

    less(比more更强大)

    • Up arrow – 向上移动一行
    • Down arrow – 向下移动一行
    • 空格键/PgDn - 向下滚动一页
    • b/pgUp - 向上滚动一页
    • 回车键 - 向下滚动一行
    • G - 移动到文件末尾
    • g - 移动到文件开头
    • ng - 移动到文件第n行
    • less -N <filename> - 执行less的同时显示行号
    • /pattern:正则匹配查找文本
      • press n: move to the next matched text
      • press N:move back to the previous match

    参考资料:

    相关文章

      网友评论

          本文标题:Linux 查看文件内容

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