使用cp创建文件的多个副本
Hujiuxiang
・1 分钟阅读
创建文件的多个副本
for i in {1..5}; do cp test{,$i};done
将文件复制到其他文件的范围。
示例输出
test1 test2 test3 test4 test5