bashfblib/example.sh
2015-12-17 11:33:30 +00:00

16 lines
191 B
Bash

#!/bin/sh
# Include the library
. bashfblib.sh
# Usage: ./example.sh min max r g b
for y in `seq $1 $2`; do
for x in `seq $1 $2`; do
drawpixel $x $y $3 $4 $5
done
done
fblib_cleanup