码迷,mamicode.com
首页 > 其他好文 > 详细

编写脚本checkint.Sh,判断用户输入的参数是否为正整数

时间:2020-09-11 15:47:14      阅读:46      评论:0      收藏:0      [点我收藏+]

标签:cal   用户   serve   check   dig   auth   date   用户输入   roo   

  1.  

     

    [root@centos8  ~]#cat  checks.sh

    #!/bin/bash

    #********************************************************************

    #Author:     wei

    #QQ:    

    #Date:   

    #FileName       chechkint.sh

    #URL:     

    #Description The test script

    #Copyright (C): 2020 All rights reserved

    #********************************************************************

    read -p "请输入数字:" i

    DIGIT=$((i%1))

    if [  $i -lt 1  ] ; then

          echo "输入$i不是正整数"

        elif   [ !  $DIGIT -gt 0 ] ; then

          echo "输入$i是正整数"

        else

          echo "输入$i不是正整数"

    fi

编写脚本checkint.Sh,判断用户输入的参数是否为正整数

标签:cal   用户   serve   check   dig   auth   date   用户输入   roo   

原文地址:https://www.cnblogs.com/weiweirui/p/13587176.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!