Project

General

Profile

Download (122 Bytes) Statistics
| Branch: | Tag: | Revision:
1
#!/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
	sleep 0.01
9
done
(10-10/11)