shell脚本,通过传入的参数来计算最大值和最小值以及平均值。

Posted 王月波

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本,通过传入的参数来计算最大值和最小值以及平均值。相关的知识,希望对你有一定的参考价值。

[[email protected] zuoye]# cat quansges.sh 
#!/bin/bash 

 > file
[ ! $#  -ge 3  ] &&  echo "please input three number or more number!" && exit 2 || echo $* >file

for i in $*
do
  expr $i + 1  &> /dev/null 
 [  $?  -ne  0  ] && echo "input is error" && exit 
done

      a=`cat file |xargs -n1|sort -n|head -1`
      b=`cat file |xargs -n1|sort -n|tail -1`
      c=`cat file |xargs -n1|sort -n|wc -l`
      
     d=`cat file |xargs -n1|awk {a+=$1}END{print a}`
     
             
#[ $b -ne 0 ] && 
echo "max number:"$b 
#[ $a -ne 0 ] &&

 echo "min number:"$a

echo "average is:" `awk BEGIN{printf "%.2f\n", $d/$c}`

[[email protected] zuoye]# bash quansges.sh 1 d 1
input is error
[[email protected] zuoye]# bash quansges.sh d d 1
input is error
[[email protected] zuoye]# bash quansges.sh d d d
input is error
[[email protected] zuoye]# bash quansges.sh d 1 1 
input is error
[[email protected] zuoye]# bash quansges.sh 1 2 3 4 5 6 7 8 9 0
max number:9
min number:0
average is: 4.50
[[email protected] zuoye]# bash quansges.sh 1 2 3 4 5 6 7 8 9 10
max number:10
min number:1
average is: 5.50
[[email protected] zuoye]# 

 

以上是关于shell脚本,通过传入的参数来计算最大值和最小值以及平均值。的主要内容,如果未能解决你的问题,请参考以下文章

往shell脚本中传入参数

shell脚本值case

求传入N个参数的最大最小值

调用shell脚本 怎么像调用java方法那样传入参数

shell 中怎么声明一个函数

Java方法遍历一次数组返回两个结果(最大值与最小值)