head 1.2; access; symbols SIO_0_9_3:1.2 SIO_0_9_2:1.2 SIO_0_9_1:1.2 SIO_0_9_0:1.2; locks; strict; comment @# @; 1.2 date 2003.01.06.19.04.56; author rse; state Exp; branches; next 1.1; 1.1 date 2002.12.18.14.58.29; author mlelstv; state Exp; branches; next ; desc @@ 1.2 log @- consistently use standard OSSP copyright message everywhere - strip trailing whitespaces @ text @#!/bin/sh ## ## devtool -- Development Tool ## Copyright (c) 2001 Ralf S. Engelschall ## if [ $# -eq 0 ]; then echo "devtool:USAGE: devtool [ ...]" 1>&2 exit 1 fi cmd="$1" shift devtoolfunc="./devtool.func" if [ ! -f devtool.conf ]; then echo "devtool:ERROR: no devtool.conf in current directory" 1>&2 exit 1 fi cmdline=`grep "^%$cmd" devtool.conf` if [ ".$cmdline" = . ]; then echo "devtool:ERROR: command $cmd not found in devtool.conf" 1>&2 exit 1 fi if [ ".$TMPDIR" != . ]; then tmpdir="$TMPDIR" elif [ ".$TEMPDIR" != . ]; then tmpdir="$TEMPDIR" else tmpdir="/tmp" fi tmpfile="$tmpdir/rc.$$.tmp" rm -f $tmpfile touch $tmpfile echo ". $devtoolfunc" >>$tmpfile ( sed >$tmpfile sh $tmpfile "$@@" rm -f $tmpfile >/dev/null 2>&1 || true @ 1.1 log @snapshot PR: Submitted by: Reviewed by: Approved by: Obtained from: @ text @d4 1 a4 1 ## Copyright (c) 2001 Ralf S. Engelschall @