mirror of
https://github.com/Cute-Dress/Dress.git
synced 2025-02-23 02:55:27 +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 |