今天要转移一批文件到新目录,返回一个错误。
-bash: /usr/bin/cp: Argument list too long
使用mv命令也是如此。
找到大神提供的解决方案是使用for循环解决:
for i in oldPath/*; do cp "$i" newPath/; done
以上方法同样适用于mv,rm等命令
今天要转移一批文件到新目录,返回一个错误。
-bash: /usr/bin/cp: Argument list too long
使用mv命令也是如此。
找到大神提供的解决方案是使用for循环解决:
for i in oldPath/*; do cp "$i" newPath/; done
以上方法同样适用于mv,rm等命令