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

wc -l "$1" | sed 's/\([0-9][0-9]*\)\( .*\)/\1/'
