mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-18 21:29:18 +02:00
10 lines
170 B
Bash
Executable file
10 lines
170 B
Bash
Executable file
#!/bin/bash
|
|
rm -rf tmp
|
|
mkdir tmp
|
|
for f in `find . -name "*.png"`
|
|
do
|
|
convert -resize 100x $f tmp/$f.resize.png
|
|
done
|
|
cd tmp
|
|
convert -delay 10 -loop 0 *.png animated.gif
|
|
|