Hard to google this one, I have this:
echo "age" | while read line; do
echo "$line"
done
but there there is this style:
while read line; do
echo "$line"
done < echo "age"
first, the second style is not quite right, but is there a name for the first and second styles? is there any functional/behavioral difference?