mirror of
https://github.com/Cute-Dress/Dress.git
synced 2024-11-28 16:25:02 +08:00
2 lines
165 B
Bash
2 lines
165 B
Bash
# 在原始高清文件夹下运行,压制 webp 图片
|
|
for file in *.jpg; do echo $file ${file%%.*}.webp; convert -resize 1920x1920 $file ../${file%%.*}.webp; done |