#!/bin/rc
#clone existing system config
echo 'system /cfg cloner'
echo 'current system /cfg directory:'
lc /cfg
echo 'enter name of directory to clone or q to quit'
CLONESOURCE=`{read}
if (~ $CLONESOURCE 'q') exit
echo 'enter new system name of cloned /cfg dir'
CLONETARG=`{read}
mkdir /cfg/$CLONETARG
dircp /cfg/$CLONESOURCE /cfg/$CLONETARG
exit
|