#!/bin/awk -f

# echo something into me and what the pretty colour output
# if you think this is rubbish (like I do), write a better one

BEGIN {r=0;}
{for(x=0;x<256;x++)for(y=0;y<256;y++){print "0,"x","y","65535","65535-r","r;r=r+255}}

