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.
私が試してみました:
for f in bla-*.zip; do ... done
と:
for f (bla-*.zip) { ... }
どちらの場合も、次のエラーが表示されますno matches found。そのようなファイルは存在しないので、もちろん一致するものは見つかりませんが、その場合、どうすれば動作させることができますか?
no matches found
解決策を見つけました(here)。できます:
for f in bla-*.zip(N); do ... done