linux: Argument list too long
2018-05-30 本文已影响0人
遇酒无缘
问题
在linux环境中,当用mv、cp、rm、ls操作大量文件时,会出现Argument list too long 错误
解决办法
用find命令,注意:结束符不能省“ \;”
find sourcePath/ -name "*.txt" -exec mv {} targetPath/ \;
#or
find sourcePath/ -type f -exec mv {} targetPath/ \;