linux下解决: Argument list too long问题

-bash: /usr/bin/cp: Argument list too long

使用mv命令也是如此。

找到大神提供的解决方案是使用for循环解决:

for i in oldPath/*; do cp "$i" newPath/; done

以上方法同样适用于mv,rm等命令

你可能感兴趣的:(php,linux,bash,运维)