直接使用cp命令与xargs命令结合
echo ‘3 4 5 6 7’ | xargs -n 1 cp 1
echo '3 4 5 6 7' | xargs -n 1 cp 1
把文件1复制5份 ,名字分别叫做 3 4 5 6 7
实例一:
echo 'Within_Remote_41 Within_Remote_42 Within_Remote_43 Within_Remote_44 Within_Remote_45 Within_Remote_46 Within_Remote_47 Within_Remote_48' | xargs -n 1 cp -r Within_Remote_Template
当然,想复制几份都行,太多了写shell脚本,循环即可。