Bash 讀取用戶輸入

2020-06-17 14:37 更新

若想要讀取 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]}."
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號