SUBATECH Photon Group of SUBATECH
---

This document explains how to safely (and automatically) update the BibTeX page of the group.

---
  1. 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).

  2. Get the photons.bib file from the web (http://www-subatech.in2p3.fr/~photons/subatech/publications/bibtex/photons.bib).

  3. Modify the photons.bib file.

  4. Use the following script to upload your changes :

    #! /bin/tcsh
    # PUT-BibTeX.csh script to upload the photons.bib file 
    #
    
    ftp [webserver] << !
    ascii
    cd web/subatech/publications/bibtex
    put photons.bib
    !        
    

  5. 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