view www/get-base-address @ 2668:67c5fe4fd3f0 octave-forge

Use alphabetic contents of package rather than categories page that might include functions from octaev itself
author adb014
date Thu, 12 Oct 2006 20:27:30 +0000
parents 3c45bce3cbb9
children d0b400de8b3f
line wrap: on
line source

#! /bin/sh

HOST=`hostname`

case `hostname` in
  foobar*|devzero*|frodo*)
    echo -n "file:/home/jwe/src/octave-www/"
  ;;
  *)
    #echo -n ""
    echo -n `pwd`
  ;;
esac

exit 0