9base

revived minimalist port of Plan 9 userland to Unix
git clone git://git.suckless.org/9base
Log | Files | Refs | README | LICENSE

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