linux 复制部分文件到另外的文件夹
show the command:
ls |tail -100|xargs -i cp {} ../
或者指定目录
ls |head -100|xargs -i cp {} /home/peter
技术总结、分享,欢迎交流!
show the command:
ls |tail -100|xargs -i cp {} ../
或者指定目录
ls |head -100|xargs -i cp {} /home/peter