分享至
各位大大請問能否在執行.sh的時候顯示1.請輸入姓名:(輸入的內容站存到A)2.請輸入密碼:(輸入的內容站存到B)然後將A跟B存入data.txt
產出檔案的樣子:AB
已邀請的邦友 {{ invite_list.length }}/5
大概這樣,有問題再說
#!/bin/bash read -p "Enter your name :" name read -p "Enter your password:" password echo $name >> data.txt echo $password >> data.txt
果然大神 謝謝可以
其實是問題太簡單~
如果不要顯示密碼的話可以加上 -s
應該是說這個吧
read -p "Enter your password:" -s password
因為我在學習寫shell~
me too, 剛寫半年左右~
IT邦幫忙