我有两个文件夹,希望将第二个文件夹中的文件内容附加到第一个文件夹中的文件中。文件夹中没有一对一的匹配。
+ OriginalFolder
- a.txt
- b.txt
+ SubFolder
- c.txt
+ ToBeAppendedFolder
+ a.txt
+ SubFolder
- c.txt
我尝试了类似的循环,但没有帮助。
find . -name "*.txt" -type f -exec sh -c "cat appendfolder/*.txt >> {}" \;