标签:shell函数 shell脚本 shel 环境 命令别名 命令 混合 进制 blog
命令分类:
1.可执行程序,如/usr/bin 下的二进制文件。
2.shell内建命令 cd是内建命令却可以被which查找
3.shell函数,小规模的shell脚本混合在环境变量中。
4.命令别名。
识别命令的命令:
·1.type:shell内建命令,用于识别命令类型。
[root@ljm ~]# type type
type 是 shell 内嵌
1 [root@ljm ~]# type ls
2 ls 是 `ls --color=auto‘ 的别名
[root@ljm ~]# type man
man 是 /usr/bin/man
2.which 查找命令的可执行程序位置 所以不包括查找内建命令和shell函数
3. help 内建命令 help 内建命令 获得内建命令的帮助
标签:shell函数 shell脚本 shel 环境 命令别名 命令 混合 进制 blog
原文地址:http://www.cnblogs.com/ljmlinux/p/7760645.html