Project

General

Profile

Download (122 Bytes) Statistics
| Branch: | Tag: | Revision:
1 b9d8cc51 Seth Mos
#!/bin/sh
2
# Illustrates use of a while loop to read a file
3
4
cat - |   \
5
while read line
6
do
7
	echo "$line"
8 32487ea8 Seth Mos
	sleep 0.01
9 b9d8cc51 Seth Mos
done