#!/bin/bash
#提示Please input your name并等待20秒,把输入内容存入变量name中
read -t 20 -p "Please input your name: " name
echo "input name is $name"
#-s选项隐藏输入,用于隐藏项
read -s -t 20 -p "Please enter your password: " pwd
echo -e "\n"
echo "input password is $pwd"
#-n 1表示只接收一个输入字符就会执行,不需要输入回车
read -n 1 -t 20 -p "Please input your gender[M/F]:" gender
echo -e "\n"
echo "input gender is $gender"
相关文章
- 08-05通过给事件处理程序传递this参数,获取事件源对象的引用。单机提交按钮时在信息框中显示用户输入的字符。
- 08-05输入框中根据用户输入内容动态查询
- 08-05制作简易计算器:接收用户输入,两个操作数,一个操作符,给出用户结果。2021/01/17
- 08-05使用Scanner接收用户的键盘的输入
- 08-05read命令读取用户输入
- 08-05【bat批处理脚本命令】bat命令接收用户输入的内容(保姆级图文+实现代码)
- 08-05PYTHON练习题 二. 使用random中的randint函数随机生成一个1~100之间的预设整数让用户键盘输入所猜的数。
- 08-05Arduino Serial.read()串口接收数据,输入open点灯,输入其他关闭
- 08-05PHP-微信公众平台开发-接收用户输入消息类型并响应
- 08-05shell脚本中模拟用户输入,避免交互