RosettaCodeData/Task/Input-loop/UNIX-Shell/input-loop-1.sh
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

4 lines
104 B
Bash

while read line ; do
# examine or do something to the text in the "line" variable
echo "$line"
done