bashfblib/example.sh
Godzil a1ff1f48ca Create example.sh
Add a simple example
2015-12-17 11:32:02 +00:00

15 lines
177 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