RosettaCodeData/Task/Input-loop/UNIX-Shell/input-loop-1.sh

5 lines
104 B
Bash
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
while read line ; do
# examine or do something to the text in the "line" variable
echo "$line"
done