head 1.4; access; symbols STR_0_9_12:1.4 LMTP2NNTP_1_4_1:1.4 LMTP2NNTP_1_4_0:1.4 STR_0_9_11:1.4 STR_0_9_10:1.4 LMTP2NNTP_1_3_0:1.3 LMTP2NNTP_1_3b2:1.3 LMTP2NNTP_1_3b1:1.3 LMTP2NNTP_1_3a3:1.3 LMTP2NNTP_1_3a2:1.3 STR_0_9_9:1.3 LMTP2NNTP_1_3a1:1.3 STR_0_9_8:1.3 LMTP2NNTP_1_2_0:1.3 LMTP2NNTP_1_2b4:1.3 LMTP2NNTP_1_2b3:1.3 LMTP2NNTP_1_2b2:1.3 LMTP2NNTP_1_2b1:1.3 LMTP2NNTP_1_2a8:1.3 LMTP2NNTP_1_2a7:1.3 LMTP2NNTP_1_2a6:1.2 LMTP2NNTP_1_2a5:1.2 STR_0_9_7:1.2 LMTP2NNTP_1_2a4:1.2 LMTP2NNTP_1_2a3:1.2 OSSP_RC_SPEC:1.2; locks; strict; comment @# @; 1.4 date 2005.01.24.15.22.19; author rse; state Exp; branches; next 1.3; 1.3 date 2003.01.06.19.13.47; author rse; state Exp; branches; next 1.2; 1.2 date 2002.01.02.17.09.13; author rse; state Exp; branches; next 1.1; 1.1 date 2001.12.27.12.15.19; author rse; state Exp; branches; next ; desc @@ 1.4 log @Adjusted copyright messages for new year 2004/2005. @ text @#!/bin/sh ## ## devtool -- Development Tool ## Copyright (c) 2001-2005 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.3 log @- adjust copyright messages for new year 2003 - strip trailing whitespaces - consistently use OSSP ASCII-art - add standard devtool.conf stuff from OSSP sa @ text @d4 1 a4 1 ## Copyright (c) 2001-2003 Ralf S. Engelschall @ 1.2 log @bump copyright year @ text @d4 1 a4 1 ## Copyright (c) 2001-2002 Ralf S. Engelschall @ 1.1 log @switch to devtool @ text @d4 1 a4 1 ## Copyright (c) 2001 Ralf S. Engelschall @