使用read读入变量赋值
参数
-p 设置提示信息
-t 设置超时时间
使用方法:
[[email protected] script]# read -p "pls input :" n pls input :12 [[email protected] script]# echo $n 12
特殊用法
[[email protected] script]# cat jisuan.sh #!/bin/bash read -t 10 -p "Pls input :" a b echo "a+b=$(($a+$b))" [[email protected] script]# sh jisuan.sh Pls input : 12 12 a+b=24
时间: 2024-11-10 10:52:23