#!/bin/bash

# quick'n'sleazy example of getting all of the lines in a file
#    (here, fodder.txt -- BUT could just as easily be a variable,
#    or a command-line argument... 8 - ) 
# by: Sharon Tuttle
# last modified: 10-10-12

while read line
do
    echo "\$line: $line"
done < fodder.txt