#!/bin/sh

# also a quick hack
# i don't wanne waste much time with pkg_create and rpm doc's at the moment.. 


BSD="/usr/share/games/fortune"
LINUX="/usr/share/games/fortunes"
OTHER="~/fortunes"

DST="FALSE"


if [ -x $BSD ]; then
DST=$BSD
fi

if [ -x $LINUX ]; then
DST=$LINUX
fi

if [ -x $OTHER ]; then
DST=$OTHER
fi

if [ $DST != "FALSE" ]; then
 cp bofh $DST
 cp bofh.dat $DST
  else
   echo "cant find the fortune path"
   exit 1
fi

exit 0

#EOF