如何使用cygwin中的find打开多个文件?

时间:2014-09-27 21:28:16

标签: cygwin

这是https://unix.stackexchange.com/questions/4382/how-to-open-multiple-files-from-find-output的后续行动。

我已经为irfanview和NotePad ++(作为记事本)设置了别名,但它们都不起作用。

以下是我的示例命令之一:

find . -name '*.txt' -exec notepad {} +

1 个答案:

答案 0 :(得分:1)

使用for循环

for file in $(find . -name "*.txt" -print)
do
   notepad $file &
done