Linux中read接收用户输入
生活随笔
收集整理的這篇文章主要介紹了
Linux中read接收用户输入
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
#!/bin/bash
#提示Please input your name并等待20秒,把輸入內(nèi)容存入變量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表示只接收一個輸入字符就會執(zhí)行,不需要輸入回車
read -n 1 -t 20 -p "Please input your gender[M/F]:" gender
echo -e "\n"
echo "input gender is $gender"
#提示Please input your name并等待20秒,把輸入內(nèi)容存入變量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表示只接收一個輸入字符就會執(zhí)行,不需要輸入回車
read -n 1 -t 20 -p "Please input your gender[M/F]:" gender
echo -e "\n"
echo "input gender is $gender"
總結(jié)
以上是生活随笔為你收集整理的Linux中read接收用户输入的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: jusched.exe是什么(Java如
- 下一篇: keygen.exe是什么