--- nfo/bash/.install 2004/11/07 01:41:17 1.1 +++ nfo/bash/.install 2004/11/07 03:01:08 1.2 @@ -5,4 +5,8 @@ echo "Installing scripts to $TARGET." pwd=`pwd` cd $TARGET -ln -s -f $pwd/* . +for script in $pwd/*; do + [ $script != ${script/CVS} ] && continue + echo " - $script" + ln -s $1 $script . > /dev/null 2>&1 +done