GNU/Linux 操作系统中的 /bin/sh 本是 bash (Bourne-Again Shell) 的符号链接,但鉴于 bash 过于复杂,有人把 ash 从 NetBSD 移植到 Linux 并更名为 dash (Debian Almquist Shell),并建议将 /bin/sh 指向它,以获得更快的脚本执行速度。Dash Shell 比 Bash Shell 小的多,符合POSIX标准。
Ubuntu继承了Debian,所以从Ubuntu 6.10开始默认是Dash Shell。
- luotaijia@ubuntu:~$ ls -l /bin/sh /bin/bash
- -rwxr-xr-x 1 root root 801808 2010-08-11 03:58 /bin/bash
- lrwxrwxrwx 1 root root 4 2012-11-28 08:06 /bin/sh -> dash
应该说, /bin/sh 与 /bin/bash 虽然大体上没什么区别, 但仍存在不同的标准. 标记为 “#!/bin/sh” 的脚本不应使用任何 POSIX 没有规定的特性 (如 let 等命令, 但 “#!/bin/bash” 可以). Debian 曾经采用 /bin/bash 更改 /bin/dash,目的使用更少的磁盘空间、提供较少的功能、获取更快的速度。但是后来经过 shell 脚本测试存在运行问题。因为原先在 bash shell 下可以运行的 shell script (shell 脚本),在 /bin/sh 下还是会出现一些意想不到的问题,不是100%的兼用。
点击(此处)折叠或打开
- 1 a=12345
- 2
- 3 let "a += 1"
- 4 echo "a = $a"
- 5
- 6 b=${a/23/BB}
- 7 echo "b = $b"
点击(此处)折叠或打开
- luotaijia@ubuntu:~/文档/shell学习练习$ /bin/sh 3.2..1.sh
- 3.2..1.sh: 3: let: not found
- a = 12345
- 3.2..1.sh: 6: Bad substitution
- luotaijia@ubuntu:~/文档/shell学习练习$ /bin/bash 3.2..1.sh
- a = 12346
- b = 1BB46
- luotaijia@ubuntu:~/文档/shell学习练习$
注: b=${a/23/BB} 把变量a中的23(仅限第一次出现)替换成BB, 并赋值给 b.