#!/bin/sh

exec nawk '
	BEGIN { for (i = 1; i <= howmany; i++) {
			print base i;
		}
		exit 0
	}
' howmany=$1 base=$2 /dev/null
