#!/bin/sh
# traintimes: list times when trains stop at a station in a dir
#

	grep stn="$1;" sched  | grep dir="$2;" | cut -d";" -f4  | cut -d= -f2

