現在、/opt
小さなシェルスクリプトを実行しています。私の「いいえ」条件は完全に機能しますが、「はい」条件は機能せず、まだ状態です/opt
。
while true; do
read -p "go to log location ?" yn
case $yn in
[Yy]* ) cd /var/tmp/logs; break;;
[Nn]* ) echo "you are @ : " $PWD; break;;
* ) echo "Please answer yes or no.";;
esac
done
助けが必要ですか?
答え1
;
あなたは背中がありませんread -p "go to log location ?" yn