mirror of
https://github.com/NotXia/unibo-ai-notes.git
synced 2025-12-14 18:51:52 +01:00
11 lines
182 B
Bash
11 lines
182 B
Bash
cd $1
|
|
|
|
for f in *.png; do
|
|
echo "Rewriting $f"
|
|
name="${f%.*}"
|
|
magick \
|
|
$name.png \
|
|
-quality 50 \
|
|
-flatten \
|
|
$name.jpg
|
|
done |