https://github.com/department-of-veterans-affairs/Leo
Raw File
Tip revision: 4dbf180b87fd7015b2a3b3a2b8fee3a706f31e6f authored by Olga Patterson on 13 October 2021, 23:18:45 UTC
Merge pull request #7 from department-of-veterans-affairs/contributing-doc
Tip revision: 4dbf180
convert.sh
# A Shell script to help with the conversion from Flap to Leo
find . -name '*.java' -print | xargs perl -p -i -e 's/gov.va.vinci.flap/gov.va.vinci.leo/g'
find . -name '*.java' -print | xargs perl -p -i -e 's/gov.va.vinci.marian/gov.va.vinci.leo/g'
find . -name '*.java' -print | xargs perl -p -i -e 's/FlapAEDescriptor/LeoAEDescriptor/g'
find . -name '*.java' -print | xargs perl -p -i -e 's/FlapDeployDescriptor/LeoDeployDescriptor/g'
find . -name '*.java' -print | xargs perl -p -i -e 's/FlapTypeSystemDescription/LeoTypeSystemDescription/g'
find . -name '*.java' -print | xargs perl -p -i -e 's/MarianBaseAnnotator/LeoBaseAnnotator/g'
back to top