tplumb - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       tplumb (174B)
       ---
            1 #!/bin/bash
            2 
            3 if [ -e ~/.bashrc ] ; then
            4         . ~/.bashrc
            5 fi
            6 PLAN9=${PLAN9:-/usr/local/plan9}
            7 
            8 bin=$PLAN9/bin
            9 IFS=$'\n'
           10 
           11 for file in $($bin/macargv)
           12 do
           13         $bin/macedit "$file"
           14 done