mirror of
https://github.com/Cute-Dress/Dress.git
synced 2025-09-17 17:56:32 +00: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 |