shell是Linux命令解释器
[root@localhost japan]# whereis ls ls: /bin/ls /usr/share/man/man1/ls.1.gz /usr/share/man/man1p/ls.1p.gz [root@localhost japan]# whereis cd cd: /usr/share/man/man1/cd.1.gz /usr/share/man/man1p/cd.1p.gz
help 内部命令
man 外部安装目录
区分是否是内部的,使用whereis命令,有具体文件路径的是外部安装的。
用户写命令->shell根据ASCII翻译为机器码(0101)->传递给内核,内核调用硬件进行处理->(处理结果给shell显示,如ls这种)
shell程序格式:
1 #!/bin/bash //非常重要的一句,不能写错一个字符 2 #The first program //注释 3 //以下是 shell 程序区 4 5 echo -e "e[1;34m dushenda e[0m"