#!/bin/sh
#
# Name: thd.sh
#
# Date: 08/28/2003
#
# Copyright: 2003 CyberSoft Operating Corporation, All Rights Reserved. 
#
# Description: This is a general script that will demonstrate how to run the Thd program.
#

PATH=/usr/bin:/usr/sbin:/bin:/sbin:$PATH
export PATH

VSTK_HOME=<vstk_home>
export VSTK_HOME

FIND=$VSTK_HOME/programs/find
if [ ! -x ${FIND} ]; then
	FIND=find
fi

${FIND} / -mount -type f ! -name core -a ! -fstype proc \
    -a -perm -u+r,-g+r,-o+r -print | \
$VSTK_HOME/bin/thd

