src/Tools/install_html.sh
author clasohm
Fri, 27 Oct 1995 12:21:02 +0100
changeset 1315 1b731d0b5ad3
parent 1312 0c0e6298df13
child 1349 ef26adb4e5b6
permissions -rwxr-xr-x
added optional parameters

#!/bin/csh
# Executed from the main Isabelle directory, this script transfers all
# files needed for the HTML version of Isabelle's theories to the HTTP
# server.
# If you don't want to copy all the logics, you can supply the names of
# the wanted ones as parameters as in "install_html.sh HOL HOLCF".

if ( "$*" == "" ) then
  rsh www4 "rm -r .html-data/isabelle/*; mkdir .html-data/isabelle/Tools"
endif

rcp index.html www4:.html-data/isabelle
rcp Tools/*_arrow.gif www4:.html-data/isabelle/Tools

if ( "$*" == "" ) then
  rcp -r CCL CTT Cube FOL FOLP HOL HOLCF LCF LK Modal ZF \
         www4:.html-data/isabelle
else
  rcp -r $* www4:.html-data/isabelle
endif