I was trying to zoom a single "X" character on a K3:
Code:
#!/bin/sh
#
#Zoom
i=1
while [ "$i" -le "45" ]; do
fbink -cmp -S $i "X"
/mnt/us/screenshot.sh
usleep 1000000
i=$(($i + 1))
done
It started all right from S 1 to S 36:
S 1

S 2

S 3

... to S 36
But from S 37 to S 45 doubled "X" appeared:
S 37

... to S 45
Any idea what's wrong?