niusouti.com

The man page for command shows the following syntax: The man page for command shows the following syntax: command [ -a | -b ] Which of the following statements is true regarding this entry?()A. Either the -a or flag -b may be used, but not both.B. If the

题目
The man page for command shows the following syntax: The man page for command shows the following syntax: command [ -a | -b ] Which of the following statements is true regarding this entry?()

A. Either the -a or flag -b may be used, but not both.

B. If the flag -a is used then the flag -b also must be used.

C. One of the -a or -b flags must be used, but not both at the same time.

D. Both the flags may be used together, but neither are mandatory.


相似考题
更多“The man page for command shows the following syntax: The man page for command shows the following syntax: command [ -a | -b ] Which of the following statements is true regarding this entry?() ”相关问题
  • 第1题:

    在Linux中,下列(49)可以获得任何Linux命令的帮助。A.help B.show C.man

    在Linux中,下列(49)可以获得任何Linux命令的帮助。

    A.#help <command>

    B.#show <command>

    C.#man <command>

    D.#ls <command>


    正确答案:C
    解析:Linux提供了几千页的帮助文档,内容几乎覆盖了Linux的方方面面。这个命令应该是每个Linux系统上都有的。它格式化并显示的手册页。通常使用者只要在命令man后,输入想要获取的命令的名称(例如ls),man就会列出一份完整的说明,其内容包括命令语法、各选项的意义以及相关命令等。
      该命令的一般形式为:man[选项]命令名称
      命令中各选项的含义分别如下:
      . —M路径 指定搜索man手册页的路径,通常这个路径由环境变量MANPATH预设,如果在命令行上指定另外的路径,则覆盖MANPATH的设定。
      . —P命令 指定所使用的分页程序,默认使用/usr/bin/less-is,在环境变量MANP-AGER中预设。
      . —S章节 由于一个命令名称可能会有很多类别。相关类别列举如下:
    章节说明
      1 一般使用者的命令
      2 系统调用的命令
      3 C语言函数库的命令
      4 有关驱动程序和系统设备的解释
      5 配置文件的解释
      6 游戏程序的命令
      7 其他的软件或是程序的命令
      有关系统维护的命令:
      . —a 显示所有的手册页,而不是只显示第一个。
      . —d 这个选项主要在检查时使用,如果用户加入了一个新的文件,就可以用这个选项检查是否出错,这个选项并不会列出文件内容。
      . —f 只显示出命令的功能而不显示其中详细的说明文件。
      . —p sring 设定运行的预先处理程序的顺序,共有下列几项:
       ◆ e eqn t tbl
       ◆ g grap r refer
       ◆ p pic v vgrind
      .—W 不显示手册页,只显示将被格式化和显示的文件所在位置。
      例如:查看cd命令的使用方法。
      $ man cd
      cd(n)Tcl Built-In Commands cd(n)
      _____________
      NAME
      Cd-Change working directory
      SYNOPSIS
      cd?dirName?
      _____________
      DESCRIPTION
      Change the current working directory to dirName,or to the
      home directory(as specified in the HOME environment vail-able)if dirName is not given.Returns an empty string.
      KEYWORDS
      working directory
      Tcl 1
      (END)
      可以按q键退出man命令。

  • 第2题:

    kristinwantstobuildanactionwhichexitsthevideoform.theactionwillbeavaiableonlywhentheuserisreadingthedocument,whichoneofthefollowingaccomplishthis?()

    A.@command([back])

    B.@command([fileexit])

    C.@command([gotoview])

    D.@command([fileclosewindow])


    参考答案:D

  • 第3题:

    An operator has been asked if a system was rebooted. Which of the following commands should be used to determine if a reboot has occurred?()

    A. The name?command.The ?name?command.

    B. The ptime?command.The ?ptime?command.

    C. The hutdown ast?command.The ?hutdown ?ast?command.

    D. The ?etc/rc.shutdown?command.


    参考答案:B

  • 第4题:

    Arielisdesigninganapplicationandwouldliketocreateresponsedocumentswithacopyoftheoriginaldocinacollapsiblesection,oneofthefollowing@command,providedwiththecorrectparameters,willallowhertodothis()

    A.@command ([compose with copy])

    B.@command ([compose with section])

    C.@command ([compose with reference])

    D.@command ([compose with referencesection])


    参考答案:C

  • 第5题:

    在窗体上画三个命令按钮,其名称分别为Command1、Command2和Command3,然后编写如下事件过程: Private Sub Command1 Click() Command2.Enabled = False Command3.Visible = False End Sub程序运行后,单击命令按钮Command1,则执行的操作是______。

    A.命令按钮Command2和Command3禁用

    B.命令按钮Command2和Command3隐藏

    C.命令按钮Command2隐藏,Command3禁用

    D.命令按钮Command2禁用,Command3隐藏


    正确答案:D

  • 第6题:

    3、command1 && comman2 || command3的含义是:()

    A.当command1,command2成功时才执行command3

    B.当command1,command2失败时才执行command3

    C.当command1失败,command2成功时才执行command3

    D.当command1成功,command2失败时才执行command3


    当 command1 成功, command2 失败时才执行 command3