tmkfile.test - plan9port - [fork] Plan 9 from user space
git clone git://src.adamsgaard.dk/plan9port
Log
Files
Refs
README
LICENSE
---
tmkfile.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