Shell 一个命令解释器,它接收应用程序/用户命令,然后调用操作系统内核。
Shell还是一个功能强大的编程语言,易编写、易调试、灵活性强。
1.1、Linux提供的Shell解析器有
[root@test001 ~]# cat /etc/shells
/bin/sh
/bin/bash
/usr/bin/sh
/usr/bin/bash
/bin/tcsh
/bin/csh
1.2、bash 和 sh的关系
[root@jenkins ~]# ll /bin/ | grep bash
-rwxr-xr-x. 1 root root 964536 Apr 1 2020 bash
lrwxrwxrwx. 1 root root 10 Dec 28 2022 bashbug -> bashbug-64
-rwxr-xr-x. 1 root root 6964 Apr 1 2020 bashbug-64
lrwxrwxrwx. 1 root root 4 Dec 28 2022 sh -> bash
1.3、Centos默认的Shell解析器是bash
[root@jenkins ~]# echo $SHELL
/bin/bash