例子:BASH SHELL下命令列擷取手動輸入的使用者名稱和密碼

來源:互聯網
上載者:User

有時候在bash shell下咱們需要擷取使用者輸入資訊,比如輸入使用者名稱,密碼一類的東西,其中密碼不能顯示出來。。。面對這樣的需求,實用命令read即可實現。

read -p "input your username: " username

read -s -p "input your password: " password

講解一下,[-s] 參數的意思是,不要回顯輸入資訊;[-p "string"] 參數後跟了一個字串,意思是print(列印)一個提示字串;最後一個username/password就是將要儲存使用者輸入的環境變數。

下面看一個例子:

#!/bin/bashexport username=''export password=''getUsername() {    read -p "username (default: `echo $USER`): " username    if test -z "$username"; then        username=$USER    fi    export username}getPassword() {    read -s -p "password: " password    export password}getUsernamegetPasswordecho ""echo $usernameecho $password
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.