mk-standalone

standalone mk from 9base
git clone git://git.evenfri.xyz/mk-standalone.git
Log | Files | Refs | README

mkfile.test (123B)


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