Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
そのような適切なユーザー入力を確認したい (疑似コード)
userInput="" #check until user enters 'y' OR 'Y' OR 'n' OR 'N' while [[ "$userInput" != "[yYnN]" ]] ; do read userInput done
私の考えは[]、マッチングにワイルドカードを使用することですが、このタスクを達成するための適切な方法は何ですか?
[]