偶而在寫一些工具時,可能會需要使用者輸入一些密碼,當然密碼不能顯示在畫面上
這時候可以透過 read -s -p 來解決

範例

#!/bin/bash
read -s -p "Password: " mypassword
echo $mypassword
Categories: Unix