confirm results
[tridge/junkcode.git] / readsh.sh
1 #!/bin/sh
2
3 FILE="$1"
4
5 (
6   while read v; do
7     echo "Got $v";
8   done
9 ) < $FILE
10
11