gpt4 book ai didi

regex - 将文件名的第一部分移至文件扩展名之前的末尾

转载 作者:太空宇宙 更新时间:2023-11-04 04:20:25 25 4
gpt4 key购买 nike

得到以下代码,从文件名的开头删除 1234-

rename -v "s/^1234-//g" *.***

输入:

1234-test1.test2.jpg

输出:

测试1.测试2.jpg

这段代码将 -1234 添加到文件名末尾

for file in *.jpg; do echo $(basename $file .jpg)-1234; done

输入:

测试1.测试2.jpg

输出:

test1.test2-1234.jpg

我正在寻找一种方法将这两个命令合并到一个脚本中,但也要以某种方式避免第二位代码,如果可能的话,每次运行时都会添加 -1234 。

最佳答案

这将是:

for file in *.jpg; do
basename=${file%.*} # Get the basename without using a subprocess.
extension=${file##*.} # Get the extension if you want to add *.JPG in the for, can be skipped if only *.jpg.

newname=${basename#1234-} # Remove "1234-" in front of basename.
test "$basename" = "$newname" && # If basename did not start with "1234-", skip this file.
continue

newname=${newname%-1234} # Remove an eventual "-1234" at the end of newname.
newname="${newname}-1234" # Add "-1234" at the end of newname.
newname="$newname.$extension" # Restore extension.
echo mv "$file" "$newname" # echo rename command.
done

如果您对输出感到满意,请删除最后一行中的回显。

关于regex - 将文件名的第一部分移至文件扩展名之前的末尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13736352/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com