我正在尝试编写一个脚本,该脚本在运行时将服务器中目录中的所有.htm文件重命名为.html。没问题!
for file in *.htm ; do mv $file `echo $file | sed 's/\(.*\.\)htm/\1html/'` ; done
但是,如果已经有一个等效于.html的文件,它应该打印出“ $ file.html已转换-已联系管理员”并退出,状态为1
我尝试使用-mv并存在,但没有雪茄。任何帮助表示赞赏。
答案 0 :(得分:1)
您应该首先检查文件,然后尝试通过移动对其重命名。
这样的事情就足够了:
for file in *.htm; do
[ -f "${file%.*}.html" ] && mv "${file}" "${file%.*}.html" || printf "%s.html already converted - contacted administrator" "${file%.*}"
done
请注意,您也无需做任何替换就可以mv "${file}" "${file}l"
。
请注意,如果不使用管理员用户,则使用if-then-else
更为安全,如下所示:
for file in *.htm; do
if [ -f "${file%.*}.html" ]; then
mv "${file}" "${file%.*}.html"
else
printf "%s.html already converted - contacted administrator" "${file%.*}"
fi
done