Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

function while_read_LINE_bottom

{
# Method 2
# Zero out the $OUTFILE
>$OUTFILE
while read LINE
do
echo "$LINE" >> $OUTFILE
:
done < $INFILE
}

You might also like