这是https://unix.stackexchange.com/questions/4382/how-to-open-multiple-files-from-find-output的后续行动。
我已经为irfanview和NotePad ++(作为记事本)设置了别名,但它们都不起作用。
以下是我的示例命令之一:
find . -name '*.txt' -exec notepad {} +
答案 0 :(得分:1)
使用for循环
for file in $(find . -name "*.txt" -print)
do
notepad $file &
done