#!/pkg/bin/ksh
# ---------------------------------------------------------------------
# prepend_text - #prepend text to each line in a file
#
# Jun 2013, Rajasekhar Lekkala
#
# Copyright (c) 2013-2014 by cisco Systems, Inc.
# All rights reserved.
# --------------------------------------------------------------------

while read Line
do
  echo "$1 $Line" 
done 
