shell 脚本 数字大小排序

Posted 2567xl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 脚本 数字大小排序相关的知识,希望对你有一定的参考价值。

shell 实现三个数大小排序

 #!/bin/bash
  
  tmp=0
  echo "input the three number"
  read -p "1:" a
  read -p "2:" b
  read -p "3:" c
  if [ $a -gt $b ]
  then
          tmp=$a
          a=$b
          b=$tmp
  fi
  if [ $a -gt $c ]
  then
          tmp=$a
          a=$c
          c=$tmp
  fi
  if [ $b -gt $c ]
  then
          tmp=$b
          b=$c
          c=$tmp
  fi
  echo "the sorted number is : $a $b $c"

自测:
Loong:/home/yee# sh -x compare.sh 
+ tmp=0
+ echo input the three number
input the three number
+ read -p 1: a
1:23
+ read -p 2: b
2:43
+ read -p 3: c
3:35
+ [ 23 -gt 43 ]
+ [ 23 -gt 35 ]
+ [ 43 -gt 35 ]
+ tmp=43
+ b=35
+ c=43
+ echo the sorted number is : 23 35 43
the sorted number is : 23 35 43
Loong:/home/yee# sh -x compare.sh 
+ tmp=0
+ echo input the three number
input the three number
+ read -p 1: a
1:12
+ read -p 2: b
2:13
+ read -p 3: c
3:16
+ [ 12 -gt 13 ]
+ [ 12 -gt 16 ]
+ [ 13 -gt 16 ]
+ echo the sorted number is : 12 13 16
the sorted number is : 12 13 16
Loong:/home/yee# sh -x compare.sh 
+ tmp=0
+ echo input the three number
input the three number
+ read -p 1: a
1:54
+ read -p 2: b
2:43
+ read -p 3: c
3:32
+ [ 54 -gt 43 ]
+ tmp=54
+ a=43
+ b=54
+ [ 43 -gt 32 ]
+ tmp=43
+ a=32
+ c=43
+ [ 54 -gt 43 ]
+ tmp=54
+ b=43
+ c=54
+ echo the sorted number is : 32 43 54
the sorted number is : 32 43 54

 

以上是关于shell 脚本 数字大小排序的主要内容,如果未能解决你的问题,请参考以下文章

Shell脚本----(sorttruniq工具和免交互expect)

shell脚本之正则表达式---sort与uniq工具

在 shell 脚本中排序

(算术基础)Shell脚本之几个随机数字的排列

将输入的数字进行按大小排序,并且将输入的数字中从1到最大的数字中缺少的数字

linux shell 如何行内排序