#!/bin/ksh
# @(#)RELEASE VERSION Workshop Docs 4.0
#
# Setup AB_CARDCATALOG to view all installed WorkShop Answerbooks
#
# Answerbooks are in <installdir>/DOC4.0/lib/locale/C/ab_docs
# this script is called from the command line

# check if whatdir is in PATH
fybin=$(whence whatdir)
if [[ -n $fybin ]]
  then 
    binpath=$(whatdir $0)
    $binpath/../../bin/show-workshop-answerbooks $*
  else
    echo "PATH environment variable does not include location of WorkShop binaries,\nplease add it."

fi
