标签: shell
我有很多包含.c个文件的目录。我想使用shell脚本将不同目录中的所有.c文件复制到单个目录。
.c
答案 0 :(得分:1)
find -name '*.c' -exec cp -t /tmp {} +
/tmp
如果您想避免冲突,可以添加此
find -name '*.c' -exec cp --parents -t /tmp {} +
ref