拷贝文件时出现/bin/cp: Argument list too long

解决方法:

find ./images_v2/ -name "*.*" |xargs -i cp {} ./images_all/
find source/ -name "*.txt" -exec mv {} target \;
find source/ -name "*.txt" | xargs -i mv {} target/

命令,如果是rm 、ls操作将以上命令里中的mv改为相应的命令即可;

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