mirror of
https://github.com/Cute-Dress/Dress.git
synced 2024-12-18 17:45:44 +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
|