欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

linux命令的使用帮助、man命令的基本使用

内部命令

  • 语法:help command

  • 示例:help pwd

[root@ming ~]# help pwd
pwd: pwd [-LP]
    Print the name of the current working directory.

    Options:
      -L    print the value of $PWD if it names the current working
        directory
      -P    print the physical directory, without any symbolic links

    By default, `pwd' behaves as if `-L' were specified.

    Exit Status:
    Returns 0 unless an invalid option is given or the current directory
    cannot be read.

外部命令

  • 语法:man command 
    注意:有些命令在不止一个章节中存在帮助手册;可使用whatis命令查看命令的章节号,如果要查看指定章节中的手册:可使用man 章节号 command 
    man共分为八个章节,对应的意义如下:

  1. man1: 用户命令

  2. man2: 系统调用

  3. man3: C库调用

  4. man4: 设备文件及特殊文件

  5. man5: 配置文件格式

  6. man6: 游戏

  7. man7: 杂项

  8. man8: 管理类的命令

  • 示例:man date

  • DATE(1) 命令所在章节
    User Commands 命令类型
    
    NAME
           命令名称及其功能的简要描述
    
    SYNOPSIS
           摘要
    
    DESCRIPTION
           描述信息
    
    EXAMPLES
           示例
    
    AUTHOR
           作者
    
    COPYRIGHT
           版权声明
    
    SEE ALSO
          查看更多
    
    GNU coreutils 8.22                                                                                           November 2016 
    • SYNOPSIS格式说明 
      []:可选内容 
      <>: 必选内容 
      a|b:二选一 
      …: 同一内容可出现多次

    SYNOPSIS
    date [OPTION]... [+FORMAT]
    date [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]
    • 文本搜索(不区分大小写)

      • 正向 
        /keyword 
        n:搜索已找到关键字的下一个 
        N:搜索已找到关键字的上一个

      • 反向搜索 
        ?keyword 
        n:搜索已找到关键字的下一个(跟搜索命令同方向) 
        N:搜索已找到关键字的上一个(跟搜索命令同方向)

    • 快捷键 
      q: 退出; 
      Space: 向下翻一屏;建议Page Down 
      b:向上翻一屏;建议 Page Up 
      d:向上翻半屏 
      u: 向下翻半屏 
      Enter:向上翻一行 
      y 或者 k:向下翻一行 
      1G: 回到文件首部 
      G:跳到文件尾部

    whatis命令使用

    语法:whatis command 
    示例:whatis reboot

    [root@ming ~]# whatis reboot
    reboot (8)           - Halt, power-off or reboot the machine

    表明reboot在第八章节中,如果想查看帮助手册可使用man 8 reboot

    来自 https://blog.csdn.net/u014542122/article/details/78879475

    普通分类: