Subversion Repositories wimsdev

Rev

Blame | Last modification | View Log | RSS feed

  1. #! /bin/sh
  2. # We use shell script to output oef source file, because
  3. # otherwise the $ sign will be substituted.
  4.  
  5.  
  6. logd=$w_wims_home/log/classes/$w_wims_class/src
  7. oefname=$logd/$wims_exec_parm.oef
  8.  
  9. if [ ! -f "$oefname" ]; then exit; fi
  10.  
  11. cat $oefname
  12. # rm -f : Pas de confirmation d'effacement, pas de diagnostic, pas de code d'erreur lorsqu'un fichier n'existe pas.
  13. rm -f $oefname >/dev/null
  14. rm -fR $oefname $logd/images/$wims_exec_parm >/dev/null
  15.  
  16. cd modules/classes/$w_lang
  17. src2def oef
  18.  
  19.