查看所有內(nèi)置命令
方法1:help
方法2:compgen -b
compgen:顯示所有可用的命令、別名和函數(shù)
-c 列出所有可用的命令
-a 列出可用的所有bash shell別名
-b 顯示所有bash內(nèi)置插件
-k 顯示所有bash關(guān)鍵字
-A 顯示所有bash函數(shù)
方法1:
可以配合管道符分頁查看:
help | less help | more
方法2:
geoff@Geoff:~$ compgen -b . : [ alias bg bind break builtin caller cd command compgen complete compopt continue declare dirs disown echo enable eval exec exit ......
查看內(nèi)置命令詳情
語法:help 命令名稱
geoff@Geoff:~$ help exit exit: exit [n] Exit the shell. Exits the shell with a status of N. If N is omitted, the exit status is that of the last command executed.
判斷命令類型
type 命令名
或:
command -V 命令名
geoff@Geoff:~$ type echo echo is a shell builtin geoff@Geoff:~$ command -V echo echo is a shell builtin