Linux shell中read如何判断输入异常后要求重新输入 作者:时鹏亮 | 更新时间:04/09/2019 07:00:50有时read需要判定下输入是否合规,不合规还需要重新输入,实现示例如下:while :do echo -n "Type number:" read num if [[ $num =~ ^- [0-9]+$ ]]; then阅读全文