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
我找到了解决方案(这里)。我可以:
for f in bla-*.zip(N); do ... done