使用 shell 脚本复制一大堆文件,并稍微更改其名称
我有大量名称非常相似的文件:row1col1.txt,row1col2.txt,row1col3.txt,row1col4.txt......
我想复制它们并将名称更改为row2col1 .txt、row2col2.txt、 row2col3,txt, row2col4.txt……
在shell脚本中使用cp命令,如何高效地执行?
I have a very large number of files with very similar names: row1col1.txt, row1col2.txt, row1col3.txt, row1col4.txt......
I'd like to make copies of them all and change the names to row2col1.txt, row2col2.txt,
row2col3,txt, row2col4.txt......
Using the cp command in shell script, how can I do it efficiently?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您将如何生成文件名?您将如何指定替换?
一种可能性是:
这使用 ls 生成名称列表,并使用 sed 为每个命名文件生成 cp 命令,并通过管道传输该命令到
sh
以便发生复制操作。在您确信其余部分正确之前,请勿将其运行到sh
。How are you going to generate the file names? How are you going to specify the substitution?
One possibility is:
This uses
ls
to generate the list of names, andsed
to generate acp
command for each named file, and pipes that tosh
so that the copy operations occur. Don't run it tosh
until you are confident that the rest is right.如果您使用
mmv
数据包中包含的程序mcp
,您可以这样做:If you use the program
mcp
contained in the packetmmv
, you can do that like this: