各組み込みコマンドのマンページをダウンロードできる場所はありますか?
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
}