This document explains how to safely (and automatically) update the
BibTeX page of the group.
You are supposed to know how to do an automatic ftp to the web server
(if not, try man ftp).
You are also supposed to have the bib2html package installed
(this is indeed done on nanpc44/45).
#! /bin/tcsh
# PUT-BibTeX.csh script to upload the photons.bib file
#
ftp [webserver] << !
ascii
cd web/subatech/publications/bibtex
put photons.bib
!
Use the following script to update the html page :
#! /bin/tcsh
# MAJ-BibTeX-Web.csh script to update the BibTeX GPS web page after
# a modification of the photons.bib file.
#
ftp [webserver] << !
ascii
cd web/subatech/publications/bibtex
get photons.bib
!
bib2html.pl photons
ftp [webserver] << !
ascii
cd web/subatech/publications/bibtex
put photons.html index.html
!
rm -rf photons.bib.html
Contact: L. Aphecetche (aphecetc@in2p3.fr)
Last update: 27-Sep-1999