Bash 組み込みコマンドの個別のマニュアルページを取得できますか? [コピー]

Bash 組み込みコマンドの個別のマニュアルページを取得できますか? [コピー]

各組み込みコマンドのマンページをダウンロードできる場所はありますか?

helpまたは、検索を使用してこれに関する情報を見つけることができることを知っていますが、マンページを読むために分離したいとman bash思います。man read

ベストアンサー1

help read
help read | less

zshから:

run-help read

または入力read somethingしてタップしますM-h(例:Alt+hまたはESC h)。

manこれらのコマンドが組み込まれているかどうかを知る必要がないように単一のコマンドが必要な場合は、次の関数を定義してください~/.bashrc

man () {
  case "$(type -t "$1"):$1" in
    builtin:*) help "$1" | "${PAGER:-less}";;     # built-in
    *[[?*]*) help "$1" | "${PAGER:-less}";;       # pattern
    *) command -p man "$@";;  # something else, presumed to be an external command
                              # or options for the man command or a section number
  esac
}

おすすめ記事