W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
若想要讀取 Bash 用戶輸入,您需要使用內(nèi)置的 Bash 命令read
。語法:
read <variable_name>
1.使用read
命令從 Bash 腳本中分別讀取單個和多個變量。
#!/bin/bash
echo "Enter the your name: "
read user_name
echo "Your name is $user_name"
echo
echo "Enter your age, phone and email: "
read age phone email
echo "your age is:$age, phone is:$phone, email: $email "
2.使用-p PROMPT
命令行選項在同一行上輸入。
#!/bin/bash
read -p "username:" user_var
echo "The username is: " $user_var
3.在靜默模式下,使用命令行選項-s
,-p
來傳遞用戶名并隱藏密碼
注:
-s
指用戶將輸入保持在靜默模式,-p
指用戶在新的命令提示符下輸入。
#!/bin/bash
read -p "username : " user_var
read -sp "password : " pass_var
echo
echo "username : " $user_var
echo "password : " $pass_var
4.使用-a
命令行選項對數(shù)組進行多個輸入。
注:
-a
指腳本讀取數(shù)組,而variable_name
是引用數(shù)組變量名稱。
#!/bin/bash
echo "Enter names : "
read -a names
echo "The entered names are : ${names[0]}, ${names[1]}."
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: