Lexurgy SC on the Command Line¶
Run SC using the command line:
lexurgy sc changes words
The changes
file needs to use the Lexurgy SC Rules format; by convention these have a
.lsc extension.
The words
argument should be one or more text files, each containing
an old-language word per line.
By convention, these files should have a .wli extension.
Lexurgy SC accepts the following command-line options:
-
-a
<rule>
,
--start-at
<rule>
¶ If this is specified, Lexurgy will ignore every rule before the specified rule (including the deromanizer). This is useful if you want to introduce loanwords or affixes partway through the language’s history.
-
-b
<rule>
,
--stop-before
<rule>
¶ If this is specified, Lexurgy will ignore the specified rule and every rule after it. This is useful if you want to evolve some forms partway, then modify them and resume (using
-a
).
-
-i
<suffix>
,
--in-suffix
<suffix>
¶ If this is specified, each input file name will have the specified suffix added. For example,
lexurgy sc changes.lsc nouns.wli verbs.wli -i old
will actually look for the filesnouns_old.wli
andverbs_old.wli
to read old-language words from.
-
-o
<suffix>
,
--out-suffix
<suffix>
¶ By default, the new-language words are written to files with the same names as the input files, but with
_ev
attached to the file name (so the words innouns.wli
will have their new-language forms written tonouns_ev.wli
. But if-o
is specified, the output files will have that suffix instead. For example,lexurgy sc changes.lsc nouns.wli verbs.wli -i newfangled
will produce output filesnouns_newfangled.wli
andverbs_newfangled.wli
.
-
-t
<word>
,
--trace-word
<word>
¶ Indicates a word to trace through its changes. Each change applied to the word will be displayed in the terminal and also written to a file with the suffix
_trace
on it. Depending on your terminal font and encoding, IPA characters might not render correctly in the terminal, so check the_trace
file if you think there’s a problem with the terminal output.This option can be specified more than once to trace several words. For example,
-t pika -t talimu -t atepino
will show how the changes to apply to pika, talimu, and atepino.
-
-m
,
--intermediates
¶
This activates intermediate romanizers, so that Lexurgy will produce a
.wli
file for each intermediate romanizer in addition to the main romanizer at the end of the .lsc file.
-
-p
,
--phonetic
¶
This deactivates the main romanizer, so the output files will have the phonetic forms instead of the romanized forms. This is useful if you think there might be mistakes in your romanizer.
-
-S
,
--no-compare-stages
¶
This turns off the
<old-word> => <new-word>
format in the.wlm
file.
-
-v
,
--compare-versions
¶
This makes Lexurgy compare its output files to the existing contents of those files before replacing them. The existing words are written to the
.wlm
file after anXX
. For example, if the previous version of the .lsc file turned kehati into kiade, but you’ve now added a palatalization rule that turns ki into ch, then the.wlm
file will showkehati => chade XX kiade
.This is useful if you’re making tweaks to the sound changes for an established language and want to make sure that the tweaks don’t have unintended consequences.