#! /bin/sh echo "hi" # z = 1 # bad x=1 # no blanks in assignment # while test "$x" -lt 7 while [ "$x" -lt 7 ] do echo "$x" x=$((x+1)) done while read line do echo "line = $line" done