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

5 lines
104 B
Bash
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
while read line ; do
# examine or do something to the text in the "line" variable
echo "$line"
done