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.
我有 10 张图像需要使用名为 abc(用作“abc”)的特定程序打开。但是我想在程序中一个一个地打开它们,然后通过简单地按下Enter例如来运行它们。所以这将使我能够相对快速地找到我正在寻找的图像。
我在用着:
for file in ./*; do echo $file; ~/Scripts/abc $file; done
它打开第一个文件,当我按下Enter它时不会返回任何内容。
我对 bash 完全陌生,非常感谢任何提示。谢谢!
for file in ./*; do echo $file; ~/Scripts/abc $file &; read; done