Browse Source

Utils: add script for typo correction depending on language

remotes/origin/translate_notes
crep 14 years ago
committed by Alexandre Dupas
parent
commit
7804f4d6db
  1. 24
      utils/typo.sh

24
utils/typo.sh

@ -0,0 +1,24 @@
#!/bin/sh
#Author: Romain Goffe
#Date: 27/10/2010
#Description: apply typo rules depending on language for songs (.sg files)
#Commentary: to be merge with latex-preprocessing script
for song in songs/*/*.sg; do
if grep -q "selectlanguage{english}" $song
then
sed -i "s/ ?/?/g" $song;
sed -i "s/ !/!/g" $song;
sed -i "s/ :/:/g" $song;
fi;
if grep -q "selectlanguage{french}" $song
then
sed -i "s/?/ ?/g" $song;
sed -i "s/ ?/ ?/g" $song;
sed -i "s/!/ !/g" $song;
sed -i "s/ !/ !/g" $song;
sed -i "s/:/ :/g" $song;
sed -i "s/ :/ :/g" $song;
fi;
done;
Loading…
Cancel
Save