If plan9port installs were supposed to have
a soft link to '9' script at /usr/bin we could have
a portable way of starting scripts:
#!/usr/bin/9 rc
Today we can use, say, #!/usr/bin/env rc,
but that now breaks in my system (arch linux) where
rc is a system initialization script.
The only change to code is to add
a couple lines to INSTALL script:
echo "* Add these to your profile environment."
echo " PLAN9=$PLAN9 export PLAN9"
echo ' PATH=$PATH:$PLAN9/bin export PATH'
echo "* If this is a system installation, add '9' to /usr/bin."
echo " ln -s $PLAN9/bin/9 /usr/bin/"