Skip to content
Wouter Deconinck edited this page May 9, 2018 · 2 revisions

Welcome to the gdml-schema wiki!

This repository was originally populated using the following code:

git clone git@github.com:JeffersonLab/gdml-schema.git
for i in `ls -tr *.tar.gz` ; do 
  tar -C gdml-schema -zxvf $i
  pushd gdml-schema
  if [ -d ${i/.tar.gz/} ] ; then
    mv ${i/.tar.gz/}/* .
    rmdir ${i/.tar.gz/}
  fi
  dos2unix -f schema/* schema/examples/* GDMLSchema/*
  git add *
  git commit -m "Updated to version ${i/.tar.gz/}"
  git tag ${i/.tar.gz/}
  git rm -rf --ignore-unmatch PyGDML GDMLSchema CPPGDML CVS schema Examples LCGReleaseNotes doc ReleaseNotes LCGMakefile
  popd
done
Clone this wiki locally