mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-23 03:32:51 -06:00
30 lines
410 B
Plaintext
30 lines
410 B
Plaintext
Renaming on Mac:
|
|
|
|
for each in *Eng.gf ;
|
|
do
|
|
mv $each $(basename $each Eng.gf)Lat.gf
|
|
done
|
|
|
|
In-place change:
|
|
|
|
sed -e 's/Eng/Lat/g' -i *Lat.gf
|
|
|
|
Start with the following:
|
|
|
|
concrete GrammarLat of Grammar =
|
|
NounLat,
|
|
VerbLat,
|
|
AdjectiveLat,
|
|
-- AdverbLat,
|
|
-- NumeralLat,
|
|
SentenceLat,
|
|
-- QuestionLat,
|
|
-- RelativeLat,
|
|
-- ConjunctionLat,
|
|
-- PhraseLat,
|
|
TextX,
|
|
StructuralLat,
|
|
-- IdiomLat
|
|
|
|
|