mirror of
https://git.adityakumar.xyz/png2jpg.git
synced 2024-11-21 21:12:54 +00:00
6 lines
119 B
Bash
6 lines
119 B
Bash
#!/bin/sh
|
|
for image in *.png; do
|
|
convert "$image" "${image%.png}.jpg"
|
|
echo "$image -> ${image%.png}.jpg"
|
|
done
|
|
exit 0
|