/[health_html]/fix.sh
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /fix.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.8 - (hide annotations)
Tue Sep 25 23:17:33 2001 UTC (22 years, 6 months ago) by dpavlin
Branch: MAIN
Changes since 1.7: +1 -0 lines
File MIME type: application/x-sh
plivamed pretraživanje

1 ravilov 1.1 #! /bin/sh
2 ravilov 1.7 DIRS="img/news img/bolesti img/autori pdf/medicus pdf/inf_glasnik templates_c med/templates_c"
3 ravilov 1.6 LINKS=". edit
4     . med/edit
5     ../index.html img/bolesti/index.html
6     ../index.html img/autori/index.html
7     ../index.html img/news/index.html
8     ../img/index.html pdf/index.html
9 ravilov 1.7 ../index.html pdf/medicus/index.html
10     ../index.html pdf/inf_glasnik/index.html
11     stanja.tpl templates/lifestyle.tpl
12 ravilov 1.6 ../pdf med/pdf
13     ../inc med/inc
14     ../fonts med/fonts
15     ../js med/js
16     ../img/news med/img/news
17     ../img/bolesti med/img/bolesti
18     ../img/autori med/img/autori
19 ravilov 1.7 ../../img/banneri med/img/banneri
20 ravilov 1.6 ../../templates/edit.tpl med/templates/edit.tpl
21 ravilov 1.7 ../../templates/show.tpl med/templates/show.tpl
22     ../../templates/search.tpl med/templates/search.tpl
23 ravilov 1.6 ../../templates/links.tpl med/templates/links.tpl
24     ../../templates/wrapper.tpl med/templates/wrapper.tpl
25     ../../templates/print.tpl med/templates/print.tpl
26 ravilov 1.7 ../../templates/footer.tpl med/templates/footer.tpl
27     ../../templates/author.tpl med/templates/author.tpl
28     ../../templates/highlight.tpl med/templates/highlight.tpl
29 dpavlin 1.8 ../../templates/mnogosearch.tpl med/templates/mnogosearch.tpl
30 ravilov 1.6 ../index.php med/index.php
31     ../legal.php med/legal.php
32 ravilov 1.7 ../stil.php med/stil.php
33     ../levels.css med/levels.css
34 ravilov 1.6 ../verdanab.ttf med/verdanab.ttf
35     ../button.php med/button.php"
36 ravilov 1.5 # -------------
37 ravilov 1.6 cd "`dirname "${0}"`"
38 ravilov 1.1 echo -n "Creating dirs:"
39 ravilov 1.5 for i in ${DIRS}
40 ravilov 1.1 do
41     [ -e "${i}" ] && continue
42     echo -n " [${i}]"
43     mkdir -p "${i}"
44     chmod 777 "${i}"
45     done
46     echo " done."
47     echo -n "Creating symlinks:"
48 ravilov 1.2 echo "${LINKS}" | while read line
49     do
50     set -- ${line}
51 ravilov 1.5 [ -z "${1}" ] && continue
52     [ -z "${2}" ] && continue
53 ravilov 1.2 [ -e "${2}" ] && continue
54     echo -n " [${2}]"
55     ln -s "${1}" "${2}"
56     done
57 ravilov 1.1 echo " done."
58     exit "${?}"

  ViewVC Help
Powered by ViewVC 1.1.26