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.
コマンド置換、変数置換、グロブが発生する順序を示す必要があります。それを行う方法について何かアイデアはありますか?
コマンド置換 < グロビング
ls $(echo '*')
そうでなければ、* は展開されません。
変数展開 (置換ではない) < グロビング
x='*' ; ls $x
上記と同じ理由です。