参考自https://unix.stackexchange.com/questions/128559/solving-mv-argument-list-too-long
find sourcePath/ -name '*.*' -exec mv {} targetPath \;
# 将sourchPath路径下的所有文件全部移动到targetPath文件夹中
find: search a folder-name: match a desired criteria-exec: run the command that follows{}: insert the filename found\;: mark the end of the exec command
638

被折叠的 条评论
为什么被折叠?



