#! /bin/sh
################################################################################
# PROJECT:
#   LANE MACHINE USER INTERFACE
#
# FILE NAME:
#  remove_log_lines
#
# PURPOSE:
#  This script removes the first several lines from the input file.
#
# NOTES:
#  $1: Input value is the file to remove the first line from.
#  $2: the number of lines to remove
#
# COPYRIGHT NOTICE:
#  Copyright 2004 All rights reserved
#  Brunswick Corp.
#  Proprietary Information
#
# REVISION HISTORY:
#     $Id: remove_log_lines,v 1.1 2004/08/25 21:11:32 mmead Exp $
################################################################################

sed -e "1,$2d" $1 > tmp123.tmp
mv tmp123.tmp $1
