Initial Revision
0 parent commit 7fba5ab64ceb81b5ce40787431cac133fde29f5b
@root root authored on 4 Aug 2007
Showing 1 changed file
View
26
tconfigfiles 0 → 100755
#!/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