Bootstrap

Sort按字典排序和按数字排序(sort -n)的区别

root@bionic:~# cat num
1
10
11
0
2
root@bionic:~# sort num
0
1
10
11
2
root@bionic:~# sort -n num
0
1
2
10
11
;