微信公众号:51 码农网
专业编程问答社区
www.51manong.com
原因: 因为这些命令的参数太长,即文件个数过多。
解决:使用 find 结合 xargs
find download/ -name "*.txt" | xargs -i mv {} upload/
同理使用 cp 也可以以同样的方式执行
find download/ -name "*.txt" | xargs -i cp {} upload/
删除 rm 也是一样
find download/ -name "*.txt" | xargs -i rm {}