mirror of
https://github.com/Cute-Dress/Dress.git
synced 2024-12-01 09:44:48 +08:00
1 line
105 B
Bash
1 line
105 B
Bash
|
for file in *.jpg; do echo $file ${file%%.*}.webp; convert -resize 1920x1920 $file ${file%%.*}.webp; done
|