1. 程式人生 > >shell指令碼read

shell指令碼read

例項, 檔案 test.sh:

read -p "請輸入一段文字:" -n 6 -t 5 -s password
echo -e "\npassword is $password"

引數說明:

  • -p 輸入提示文字
  • -n 輸入字元長度限制(達到6位,自動結束)
  • -t 輸入限時
  • -s 隱藏輸入內容
$ sh test.sh 
請輸入一段文字:
password is asdfgh