linux中如何在通过find找到的所有文件里追加上另一个文件的内容?

2025-05-17 08:01:40
推荐回答(1个)
回答1:

你写反了 find / -name ifcfg* -exec cat {} >> mytest \;
反过来试试