使用另一个文件的名称重命名一个文件,并保留扩展名 [SHELL]
标题是不言自明的,我想知道如何在 shell 中使用另一个保持原始扩展名的文件的名称重命名一个文件。
The title is self-explanatory, I want to know how I can rename a file with the name of another file maintaining the original extension, in shell.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设bash,你这样做
Presuming bash, you do it this way
这是一个用 bash 编写的简单脚本:
运行它,第一个参数作为要重命名的文件,第二个参数作为文件名(带有您要使用的名称)。例如
将文件 foobar.txt 重命名为 foo.txt
Here's a simple script written in bash:
Run it with the first argument as the file you want to rename and the second argument as the filename with the name you would like to use. E.g.
would rename the file foobar.txt to foo.txt