#! /bin/bash # Read one line at a time from a specified file. # Can be used to extract required information from # those lines. # Mon, 23 Jun 2008 22:24:24 -0400 echo exec<$1 while read line do echo $line done echo