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