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.
次の bash 構文はどういう意味ですか?
MY_VAR=${MY_VAR:-"mystring"}
前もって感謝します。
のパラメータ拡張を参照してくださいman bash:
man bash
$ {パラメータ:-単語} デフォルト値を使用します。parameterが未設定またはnullの場合、の展開がword 置き換えられます。それ以外の場合は、の値parameterが置き換えられます。
$ {パラメータ:-単語}
デフォルト値を使用します。parameterが未設定またはnullの場合、の展開がword 置き換えられます。それ以外の場合は、の値parameterが置き換えられます。
parameter
word