#!/bin/sh
#
# getBinPaths - returns *all* of the "known" bin directories for this system
#
# Known are defined as the ones generated by the scripts, if there are others
# that need to be knwon, then they should be added to the scripts.


DEFAULT_BINS=`getDefaultBinPaths`

ADMIN_BINS=`getAdminBinPaths`

GUI_BINS=`getGuiBinPaths`

MISC_BINS=`getMiscBinPaths`

echo "$DEFAULT_BINS $ADMIN_BINS $GUI_BINS $MISC_BINS"

