通过脚本实现对数字进行排序
#执行脚本:sh ./paixu.sh 88 99 55 44 66
实现效果: 44
55
66
88
99
#!/bin/bash
#filename:paixu.sh
i=1
w=$#
for N in $*;do
a[$i]=$N
let i++
done
p=1
while [ $p -le $w ];do
q=$p
while [ $q -le $w ];do
f=$(($q+1))
m=${a[$p]}
n=${a[$f]}
if [[ $m -lt $n ]];then
a[$p]=$n
a[$f]=$m
fi
let q++
done
let p++
done
j=$w
while [ $j -ge 1 ];do
echo "${a[j]}"
let j--
done