读书笔记之101个脚本之No.4

简介:

今天的案例是将 对用户输入的判断的

The Code

#!/bin/sh
# validint -- Validates integer input, allowing negative ints too.

function validint
{
  # Validate first field. Then test against min value $2 and/or
  # max value $3 if they are supplied. If they are not supplied, skip these tests.

  number="$1";      min="$2";      max="$3"

  if [ -z $number ] ; then
    echo "You didn't enter anything. Unacceptable." >&2 ; return 1
  fi

  if [ "${number%${number#?}}" = "-" ] ; then  # is first char a '-' sign?
testvalue="${number#?}"     # all but first character
  else
    testvalue="$number"
  fi

  nodigits="$(echo $testvalue | sed 's/[[:digit:]]//g')"

  if [ ! -z $nodigits ] ; then
    echo "Invalid number format! Only digits, no commas, spaces, etc." >&2
    return 1
  fi

  if [ ! -z $min ] ; then
    if [ "$number" -lt "$min" ] ; then
       echo "Your value is too small: smallest acceptable value is $min" >&2
       return 1
    fi
  fi
  if [ ! -z $max ] ; then
     if [ "$number" -gt "$max" ] ; then
       echo "Your value is too big: largest acceptable value is $max" >&2
       return 1
     fi
  fi
  return 0
}


if validint "$1" "$2" "$3" ; then
  echo "That input is a valid integer value within your constraints"
fi



解析脚本:
1) number="$1";  min="$2"; max="$3"  指用户的3个输入;
2)nodigits="$(echo $testvalue | sed 's/[[:digit:]]//g')" 为后面测试用户输入的是否全为数字做准备
3)if validint "$1" "$2" "$3" ; then  注意 "$1" "$2" "$3"要加引号。
4)testvalue变量是为了过滤负数后测试输入是否全为数字的。
5)感觉想得挺周全的。





:,如需转载请自行联系原作者



相关文章
|
4月前
|
算法 安全 编译器
《探秘C++》No.23 C++11(二)
《探秘C++》No.23 C++11(二)
31 0
|
1月前
|
存储 Linux Shell
【Linux】——期末复习题(十一)
【Linux】——期末复习题(十一)
10 0
|
4月前
|
存储 安全 编译器
《探秘C++》No.23 C++11(一)
《探秘C++》No.23 C++11(一)
60 0
|
8月前
|
机器学习/深度学习 监控 Shell
Shell 一个月时间让你从小白到实战【万字笔记建议收藏方便学习】2
Shell 一个月时间让你从小白到实战【万字笔记建议收藏方便学习】2
40 0
|
8月前
|
Shell Linux
Shell 一个月时间让你从小白到实战【万字笔记建议收藏方便学习】1
Shell 一个月时间让你从小白到实战【万字笔记建议收藏方便学习】1
54 0
|
11月前
|
存储 Shell 调度
学习系统编程No.8【bash实现】
学习系统编程No.8【bash实现】
|
监控 Unix Linux
Linux命令详细总结(万字总结值得一看)
🍅程序员小王的博客:程序员小王的博客 🍅 欢迎点赞 👍 收藏 ⭐留言 📝 🍅 如有编辑错误联系作者,如果有比较好的文章欢迎分享给我,我会取其精华去其糟粕 🍅java自学的学习路线:
152 0
Linux命令详细总结(万字总结值得一看)
ROS踩坑日记 NO.1
ROS踩坑日记 NO.1
241 0
|
算法 IDE Go
躺在床上刷抖音,不如来写第一个 GO 程序入门篇
躺在床上刷抖音,不如来写第一个 GO 程序入门篇
110 0
躺在床上刷抖音,不如来写第一个 GO 程序入门篇
|
程序员 编译器 C语言
第六章 循环《C语言程序设计现代方法(第2版)》读书笔记(二)
第六章 循环《C语言程序设计现代方法(第2版)》读书笔记(二)
第六章 循环《C语言程序设计现代方法(第2版)》读书笔记(二)