#!/bin/bash
from="$1" ; : ${from:=0}
to="$2" ; : ${to:=z}
while read line; do
	date="${line%	*}"
	if [ "$date" \< "$from" ]; then
		continue
	fi
	if [ "$date" \> "$to" ]; then
		break
	fi
	echo "$line"
done
