• type
    • 补充说明
      • 语法
      • 选项
      • 参数
      • 实例

    type

    显示指定命令的类型

    补充说明

    type命令 用来显示指定命令的类型,判断给出的指令是内部指令还是外部指令。

    命令类型:

    • alias:别名。
    • keyword:关键字,Shell保留字。
    • function:函数,Shell函数。
    • builtin:内建命令,Shell内建命令。
    • file:文件,磁盘文件,外部命令。
    • unfound:没有找到。

    语法

    1. type(选项)(参数)

    选项

    1. -t:输出“file”、“alias”或者“builtin”,分别表示给定的指令为“外部指令”、“命令别名”或者“内部指令”;
    2. -p:如果给出的指令为外部指令,则显示其绝对路径;
    3. -a:在环境变量“PATH”指定的路径中,显示给定指令的信息,包括命令别名。

    参数

    指令:要显示类型的指令。

    实例

    1. [root@localhost ~]# type ls
    2. ls is aliased to `ls --color=tty'
    3. [root@localhost ~]# type cd
    4. cd is a shell builtin
    5. [root@localhost ~]# type date
    6. date is /bin/date
    7. [root@localhost ~]# type mysql
    8. mysql is /usr/bin/mysql
    9. [root@localhost ~]# type nginx
    10. -bash: type: nginx: not found
    11. [root@localhost ~]# type if
    12. if is a shell keyword
    13. [root@localhost ~]# type which
    14. which is aliased to `alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'
    15. [root@localhost ~]# type -a cd
    16. cd is a shell builtin
    17. [root@localhost ~]# type -a grep
    18. grep is /bin/grep