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.
簡単なステートメントを実行しようとしていますifが、文字列の 1 つに角かっこが含まれています。
if
私は試してみましたが\ ' " +、すべてが頭に浮かびました。
\ ' " +
私は基本的にこれを持っています:
if [ $MESSAGE = "username [$USERNAME] is already taken" ]
この場合、エラーメッセージをスローしたいと思います。
$MESSAGE も引用します。その変数に [ が含まれている場合、解析に影響します。
if [ "$MESSAGE" = "username [$USERNAME] is already taken" ]