#!/bin/sh
#
# @(#)killtd	8.9 8.9 96/03/27 Copyright 1986-1992 SMI
#
# Copyright (c) 1986-1992 Sun Microsystems, Inc.  All Rights Reserved.
# Sun considers its source code as an unpublished, proprietary trade
# secret, and it is available only under strict license provisions.
# This copyright notice is placed here only to protect Sun in the event
# the source is deemed a published work.  Dissassembly, decompilation,
# or other means of reducing the object code to human readable form is
# prohibited by the license agreement under which this code is provided
# to the user or company in possession of this copy.
#
# RESTRICTED RIGHTS LEGEND: Use, duplication, or disclosure by the
# Government is subject to restrictions as set forth in subparagraph
# (c)(1)(ii) of the Rights in Technical Data and Computer Software
# clause at DFARS 52.227-7013 and in similar clauses in the FAR and
# NASA FAR Supplement.

# killtd
#
#	Kill all td3278 processes
#

#
#  09-29-95 lta 1222768 - set up path to pick up correct ps
#
PATH=/sbin:/usr/sbin:/bin:/usr/bin:/etc:/usr/etc
export PATH
kill `ps -e|grep td3278|awk '{print $1}'`
rm /tmp/td*
