--- fix.sh 2001/08/08 12:58:08 1.1 +++ fix.sh 2001/09/19 12:23:56 1.6 @@ -1,6 +1,31 @@ #! /bin/sh +DIRS="img/news img/bolesti img/autori pdf templates_c med/templates_c" +LINKS=". edit +. med/edit +../index.html img/bolesti/index.html +../index.html img/autori/index.html +../index.html img/news/index.html +../img/index.html pdf/index.html +../pdf med/pdf +../inc med/inc +../fonts med/fonts +../js med/js +../img/news med/img/news +../img/bolesti med/img/bolesti +../img/autori med/img/autori +../../templates/edit.tpl med/templates/edit.tpl +../../templates/links.tpl med/templates/links.tpl +../../templates/wrapper.tpl med/templates/wrapper.tpl +../../templates/print.tpl med/templates/print.tpl +../../templates/footer.tpl med/templates/print.tpl +../index.php med/index.php +../legal.php med/legal.php +../verdanab.ttf med/verdanab.ttf +../button.php med/button.php" +# ------------- +cd "`dirname "${0}"`" echo -n "Creating dirs:" -for i in img/news img/bolesti templates_c +for i in ${DIRS} do [ -e "${i}" ] && continue echo -n " [${i}]" @@ -9,20 +34,14 @@ done echo " done." echo -n "Creating symlinks:" -if [ ! -e "templates/d_s.tpl" ] -then - echo -n " [templates/d_s.tpl]" - ln -s temp.tpl templates/d_s.tpl -fi -if [ ! -e "templates/lifestyle.tpl" ] -then - echo -n " [templates/lifestyle.tpl]" - ln -s conditions.tpl templates/lifestyle.tpl -fi -if [ ! -e "inc/pgLifestyle.php" ] -then - echo -n " [inc/pgLifestyle.php]" - ln -s pgConditions.php inc/pgLifestyle.php -fi +echo "${LINKS}" | while read line +do + set -- ${line} + [ -z "${1}" ] && continue + [ -z "${2}" ] && continue + [ -e "${2}" ] && continue + echo -n " [${2}]" + ln -s "${1}" "${2}" +done echo " done." exit "${?}"