read -p 和 echo 键盘读入,屏幕输出,5秒超时
[root@localhost ~]# cat read.sh
#!/bin/bash
read -t 5 -p "Please input a string:" string
echo $string
本文共 173 字,大约阅读时间需要 1 分钟。
read -p 和 echo 键盘读入,屏幕输出,5秒超时
[root@localhost ~]# cat read.sh
#!/bin/bash
read -t 5 -p "Please input a string:" string
echo $string
转载于:https://blog.51cto.com/hhx012/1731460