2013-11-20 124 views

回答

1

,你也可以使用這個Dir1中

find . -type f -exec cp{} dir2/ \; 
2

你可以試試這個

cp dir1/*.* dir2/* 
+0

無論如何,這是行不通的,因爲一些文件沒有任何擴展名。 – Scipion

0

試試這個

find dir1 -type f -exec cp {} dir2/ \; 
相關問題