plan9port/src/cmd/mk/mkfile.test

13 lines
123 B
Text
Raw Normal View History

2005-01-13 04:49:19 +00:00
MKSHELL=$PLAN9/bin/rc
2005-01-04 22:41:27 +00:00
use-rc:V:
for(i in a b c)
echo $i
2005-01-13 04:49:19 +00:00
MKSHELL=/bin/sh
2005-01-04 22:41:27 +00:00
use-sh:V:
for i in a b c
do
echo $i
done
2003-09-30 17:47:42 +00:00