mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
5 lines
68 B
Bash
Executable file
5 lines
68 B
Bash
Executable file
#/bin/sh
|
|
for file in *.png
|
|
do
|
|
convert $file -resize 67% $file
|
|
done
|