echo $1 $2 $3 | awk '
  {
	start = $1 ;
	end   = $2 ;
	inc   = $3 
  }
  END {
	 for (i = start; i <= end; i += inc)
	 print i
  } '
