Case usage
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Case usage相关的知识,希望对你有一定的参考价值。
#! /bin/bashread -p "please input a number:" a
case "$a" in
1)
echo "The num is 1"
;;
2)
echo "The num is 2"
;;
[3-9])
echo "The num is $a"
;;
*)
echo "please input[0-9] int"
exit
;;
esac
以上是关于Case usage的主要内容,如果未能解决你的问题,请参考以下文章