MyDir Dir1 1.txt 2.txt Dir2 a.txt b.txt e.jpg Dir3 f.txt k.txt MyDestination
如何将所有txt复制到MyDestination?
find /MyDir -name '*.txt' -exec cp -t /MyDestination "{}" +
它将找到相关的txt文件并将它们分批传递给cp,以便将它们复制到MyDestination.