#!/bin/sh
# (c) Copyright 1994 by James H. Lowe, Jr.
#
# $Id: shak0_readx_v 1.3 1995/12/02 03:51:34 jhl Exp $
#
   first=""
   last=""

   while read line 
       do
          if [ "$first" = "" ]; then
               echo "$line"
               first="1"
	  else
	     last="$line"
          fi
       done 
   if [ "$last" ]; then
      echo "$last"
   fi

