Ubuntu 下的 bash 和 dash

sh、bash、dash

Bourne Shell (sh)

UNIX 最初使用,且在每种 UNIX 上都可以使用。在 Shell 编程方面相当优秀,但在处理与用户的交互方面做得不如其他几种 Shell。

Bourne Again Shell (bash)

许多 Linux 操作系统缺省的 Shell。即 bash 是 Bourne Shell 的扩展,与 Bourne Shell 完全向后兼容。在 Bourne Shell 的基础上增加、增强了很多特性。可以提供如命令补全、命令编辑和命令历史表等功能。包含了很多 C Shell 和 Korn Shell 中的优点,有灵活和强大的编程接口,同时又有很友好的用户界面。

Debian Almquist Shell (dash)

原来 bash 是 GNU/Linux 操作系统中的 /bin/sh 的符号连接,但由于 bash 过于复杂,有人把 bash 从 NetBSD 移植到 Linux 并更名为 dash,并建议将 /bin/sh 指向它,以获得更快的脚本执行速度。Dash Shell 比 Bash Shell 小的多,符合 POSIX 标准。

Debian 和 Ubuntu 中,/bin/sh 默认已经指向 dash,这是一个不同于 bash 的 shell,它主要是为了执行脚本而出现,而不是交互,它速度更快,但功能相比 bash 要少很多,语法严格遵守 POSIX 标准。

bash 和 dash 语法上的区别

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
1. 定义函数  
bash: function bash 中为关键字
dash: dash 中没有 function 这个关键字

2. select var in list; do command; done
bash:支持
dash:不支持, 替代方法:采用 while + read + case 来实现

3. echo {0..10}
bash:支持 {n..m} 展开
dash:不支持,替代方法, 采用 seq 外部命令

4. here string
bash:支持 here string
dash:不支持, 替代方法:可采用 here documents

5. >&word 重定向标准输出和标准错误
bash: word 为非数字时,>&word 变成重定向标准错误和标准输出到文件 word
dash: >&word, word 不支持非数字, 替代方法: >word 2>&1; 常见用法 >/dev/null 2>&1

6. 数组
bash: 支持数组, bash4 支持关联数组
dash: 不支持数组,替代方法, 采用变量名 + 序号来实现类似的效果

7. 子字符串扩展
bash: 支持 ${parameter:offset:length},${parameter:offset}
dash: 不支持,替代方法:采用 expr cut 外部命令代替

8. 大小写转换
bash: 支持 ${parameter^pattern},${parameter^^pattern},${parameter,pattern},${parameter,,pattern}
dash: 不支持,替代方法:采用 tr/sed/awk 等外部命令转换

9. 进程替换 <(command), >(command)
bash: 支持进程替换
dash: 不支持, 替代方法, 通过临时文件中转

10. [ string1 = string2 ] [ string1 == string2 ]
bash: 支持两者
dash: 只支持 =

11. [[ 加强版test
bash: 支持[[ ]], 可实现正则匹配等强大功能
dash: 不支持[[ ]], 替代方法,采用外部命令

12. for (( expr1 ; expr2 ; expr3 )) ; do list ; done
bash: 支持 C 语言格式的 for 循环
dash: 不支持该格式的 for, 替代方法,用 while+((expression)) 实现

13. let 命令和 ((expression))
bash:有内置命令 let,也支持 ((expression)) 方式
dash:不支持,替代方法,采用 ((expression)) 实现

13. let 命令和 ((expression))
bash: 有内置命令 let, 也支持 ((expression)) 方式
dash: 不支持,替代方法,采用 $((expression)) 或者外部命令做计算

14. $((expression))
bash: 支持 id++,id–,++id,–id 这样到表达式
dash: 不支持 ++,–, 替代方法:id+=1,id-=1, id=id+1,id=id-1

15. 其它常用命令
bash: 支持 echo -e, 支持 declare
dash: 不支持。

本文参考:
https://www.jianshu.com/p/762d4cccee7e
https://www.cnblogs.com/macrored/p/11548347.html