如何用命令查看linux命令的使用方法
如何用命令查看linux命令的使用方法
慕尼黑的夜晚無繁華
2018-07-12 11:00:10
TA貢獻1836條經(jīng)驗 獲得超13個贊
Linux系統(tǒng)下常用的三種查看命令幫助文檔的方法:
一 、help Command適用于內(nèi)部命令舉例:
# type cd
cd is a shell builtin
# help cd
# type ls
ls is aliased to `ls --color=auto'
# help ls
-bash: help: no help topics match `ls'. ?Try `help help' or `man -k ls' or `info ls'.
二、Command –help/-h適用于外部命令例如:
#?ls?--help |
二、Command –help/-h適用于外部命令例如:
三、man Command
舉例:
#?man?cd |
舉報