help

先學習grub第一個指令「help」。

操作範例

在「grub>」命令提示字元下,執行下面指令

help help

顯示

Usage: help [PATTERN ...]
Show a help message.

-h, --help       Display this help and exit.
-u, --usage      Display the usage of this command and exit.

接下來測試執行,「help -h」,「help --help」,「help --usage」都沒有顯示,直接跳下一個提示字元「grub>」。

接著執行下面指令

help

就會顯示很多可用的指令

假設我們要了解「probe」這個指令的用法,以及有那些參數可以下,

我們可以執行

help probe

就會顯示

Usage: probe DEVICE
Retrieve device info.

-s, --set=VARNAME            Set a variable to return value.
-d, --driver                 Determine driver.
-p, --partmap                Determine partition map type.
-f, --fs                     Determine filesystem type.
-u, --fs-uuid                Determine filesystem UUID.
-l, --label                  Determine partition label.
    --part--uuid             Determine partition UUID.
-h, --help                   Display this help and exit.
    --usage                  Display this usage of this command and exit.

接著測試執行「probe -h」,「probe --help」,皆會顯示上面的訊息。

若是執行「probe --usage」,則會顯示如下的訊息

Usage: probe DEVICE

關於「probe」的詳細用法,請參考另一篇紀錄

相關文件

接下來

接下來學習grub指令「clear」。