aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/mk/mkfile.test
blob: 8a4e4b96476ee4e5f5badb10170600bd5f746e9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
MKSHELL=$PLAN9/bin/rc
use-rc:V:
	for(i in a b c)
		echo $i

MKSHELL=/bin/sh
use-sh:V:
	for i in a b c
	do
		echo $i
	done