Removed unused files.

This commit is contained in:
Janet B. Anderson
1999-05-06 21:50:09 +00:00
parent b4cc937af1
commit 34e966d99e
3 changed files with 0 additions and 63 deletions

View File

@@ -1,38 +0,0 @@
#!/bin/sh
#
# $Id$
#
# simplified WIN32 version 7/25/96 -kuk-
#
# Author: Matthew Needes
#
# one arg
if [ $# -ne 1 ]; then
echo 'Usage:'
echo ' getrel <EpicsNodeFullPathName> '
echo ' '
echo 'ex: getrel /usr/local/epics/base_R3.13'
echo ' --------- OR -----------'
echo ' getrel ~/epics/base '
exit
fi
BASE=${1}
BIN=${BASE}/bin
DBD=${BASE}/dbd
if [ ! -d ${BIN} -o ! -d ${DBD} ]
then
echo "getrel: ${BASE} does not appear to be an epics BASE root tree"
echo " I cannot locate a /bin or /dbd directory in there"
exit 1
fi
echo EPICS_BASE=${BASE} > EPICS_BASE
echo ${BASE} - `date` >> .current_rel_hist
exit 0

View File

@@ -1,10 +0,0 @@
#!/bin/sh
#
# iocMakeApp
#
# Author: Marty Kraimer
#
echo "makeBaseApp is not yet ported to WIN32"
exit 2

View File

@@ -1,15 +0,0 @@
#!/bin/sh
#
#
if [ $# -ne 1 ]
then
echo "USAGE:"
echo "$0 dirname"
echo 'Function: if dirname does not exist, create it.'
exit 2
fi
DIR=$1
test -d ${DIR} || mkdir ${DIR}