使用另一个文件的名称重命名一个文件,并保留扩展名 [SHELL]

发布于 2024-12-22 11:29:25 字数 57 浏览 0 评论 0原文

标题是不言自明的,我想知道如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我喜欢麦丽素 2024-12-29 11:29:25

假设bash,你这样做

file1="first file.txt"
file2="second file.html"

mv "$file1" "${file2%.*}.${file1##*.}"

Presuming bash, you do it this way

file1="first file.txt"
file2="second file.html"

mv "$file1" "${file2%.*}.${file1##*.}"
我的黑色迷你裙 2024-12-29 11:29:25

这是一个用 bash 编写的简单脚本:

name="${2%.*}"
ext="${1##*.}"
filename="$name.$ext"
mv "$1" "$filename"

运行它,第一个参数作为要重命名的文件,第二个参数作为文件名(带有您要使用的名称)。例如

./script foobar.txt foo.bar

将文件 foobar.txt 重命名为 foo.txt

Here's a simple script written in bash:

name="${2%.*}"
ext="${1##*.}"
filename="$name.$ext"
mv "$1" "$filename"

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.

./script foobar.txt foo.bar

would rename the file foobar.txt to foo.txt

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文