问题
在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/ \;
在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/ \;
本文标题:linux: Argument list too long
本文链接:https://www.haomeiwen.com/subject/ivytsftx.html
网友评论