shell脚本(1)-随机输入几个整数 ,脚本返回最大值

2022/1/1 7:10:42

本文主要是介绍shell脚本(1)-随机输入几个整数 ,脚本返回最大值,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

脚本目标:

脚本后 随机输入几个整数,实现返回其中最大值

脚本内容:

#!/bin/bash

typeset MAX=$1

if [ $# -le 1 ];then
        echo "You need to enter more than two numbers, please enter again."
        exit
else

  for i in $@
    do
      if [ $MAX -le $i ];then
            MAX=$i
      fi

    done

  echo "the max number is:$MAX"
fi

 

运行结果:

[root@node1 script]# 
[root@node1 script]# sh max_num.sh 45 78 5454 12154 5787 
the max number is:12154
[root@node1 script]# 

 



这篇关于shell脚本(1)-随机输入几个整数 ,脚本返回最大值的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程