1
0
mirror of https://frontier.innolan.net/github/AmigaExamples.git synced 2026-01-12 05:37:18 +00:00
Files
AmigaExamples/016.copper_fun/convert.sh
2016-03-13 12:33:20 +11:00

19 lines
333 B
Bash
Executable File

#!/bin/bash
ODD=1
COUNTER=1
for I in out/*.png; do
if [ $ODD = 0 ] ; then
if [ $COUNTER -lt 16 ] ; then
((COUNTER++))
echo `echo $I | sed -e 's/\///' -e 's/\.png//'`":"
./out/copper_fun_generate $I
#mv -f resized.png $I.resized.png
echo " dc.l \$fffffffe"
ODD=1
fi
else
ODD=0
fi
done