#!/bin/csh -f
#
# NAME:
#	logtail
# PURPOSE:
#	Montitor the most recent logfile.
# CALLING SEQUENCE:
#	% alignstatus
# MODIFICATION HISTORY:
#	2006-Jun-20  C. Kankelborg

# Find the latest log file from MOSES_ALIGN_ORDERS
foreach filename (`ls -rt *.log*`)
end
  
# Monitor the latest logfile.
tail -f  $filename
