教育行業(yè)A股IPO第一股(股票代碼 003032)

全國咨詢/投訴熱線:400-618-4000

Linux培訓:help命令顯示命令的幫助信息

更新時間:2019年04月03日09時25分 來源:傳智播客linux培訓 瀏覽次數(shù):

    help 是非常簡單的命令,而且不經(jīng)常使用。因為 help 只能獲取 Shell 內(nèi)置命令的幫助,但在 Linux 中絕大多數(shù)命令是外部命令,所以 help 命令的作用非常有限。而且內(nèi)置命令也可以使用 man 命令獲取幫助。
    help 命令的基本信息如下。
    命令名稱:help。
    英文原意:help。
    所在路徑:Shell 內(nèi)置命令。
    執(zhí)行權(quán)限:所有用戶。
    功能描述:顯示 Shell 內(nèi)置命令的幫助。
linux培訓

    help 命令的格式非常簡單:

    [root@localhost ~]# help 內(nèi)置命令
    Linux 中有哪些命令是內(nèi)置命令呢?我們可以隨意使用 man 命令來査看一個內(nèi)置命令的幫助,例如:
    [root@localhost ~]# man help
    BASH_BUILTINS(1)
    BASH_BUILTINS(1)
    NAME
    bash,:,.,[, alias, bg, bind, break, builtin, caller, cd, command, compgen,complete, compopt, continue, declare, dirs, disown, echo, enable, eval, exec,exit, export,false, fc, fg, getopts, hash, help, history, jobs, kill, let, local, logout,mapfile, popd, printf, pushd, pwd, read, readonly, return, set, shift, shopt,source, suspend, test, times, trap, true, type, typeset, ulimit, umask,unalias, unset, wait - bash built-in commands, seebash(1)...省略部分內(nèi)容...
    #這里列出的命令就是所有的Shell內(nèi)置命令
    可以發(fā)現(xiàn),如果使用 man 命令去査看任意一個 Shell 內(nèi)置命令,則會列出所有 Shell 內(nèi)置命令的幫助。査看一個具體的 Shell 內(nèi)置命令如 history 的幫助,可以執(zhí)行 "help history"。
    如果我們使用 help 命令査看外部命令的幫助,則會如何呢?
    [root@localhost ~]# help ls
    -bash: help: no help topics match 'ls'.Try 'help help' or 'man -k Is' or 'info ls'.
    #這里會報錯,報錯信息是"help無法得到 ls 命令的幫助,請査看 help 幫助,或者用 man 和 info 來査看ls的幫助信息"--help 選項
    絕大多數(shù)命令都可以使用"--help"選項來査看幫助,這也是一種獲取幫助的方法。例如:
    [root@localhost ~]# ls --help
    這種方法非常簡單,輸出的幫助信息基本上是 man 命令的信息簡要版。
    》》》更多的關(guān)于linux培訓知識,歡迎隨時咨詢傳智播客網(wǎng)站右下側(cè)咨詢窗口《《《
傳智播客linux培訓
0 分享到:
和我們在線交談!