Blob


1 MKSHELL=$PLAN9/bin/rc
2 use-rc:V:
3 for(i in a b c)
4 echo $i
6 MKSHELL=/bin/sh
7 use-sh:V:
8 for i in a b c
9 do
10 echo $i
11 done