diff --git a/tconfigfiles b/tconfigfiles new file mode 100755 index 0000000..f6c3837 --- /dev/null +++ b/tconfigfiles @@ -0,0 +1,25 @@ +#!/bin/sh +# tconfigfiles - Manage Configuration Files +# Copyright (c) 2007 TundraWare Inc., Des Plaines, IL USA +# All Rights Reserved +# $Id: tconfigfiles,v 1.101 2007/08/04 06:02:33 root Exp $ + +BASE="\/root\/sysgen\/configtree" + +case `basename $0` +in + + "cfinstall") + for f in $* + do + canonicaldir=`pwd | sed s/$BASE//` + cp -pvR $f $canonicaldir + done + ;; + + *) + echo "Unkown Command: $0" + exit 1 + ;; + +esac