NYAGOS - The Nihongo Yet Another GOing Shell

English / Japanese

Substitution

History

These suffix are available.

Variables

Environment variable

Unicode Literal

Command Substitution ((embed)\backquote.lua)

`COMMAND`

OR $(COMMAND)

is replaced to what COMMAND print to standard output.

Brace Expansion ((embed)\brace.lua)

echo a{b,c,d}e

is replaced to

echo abe ace ade

Inserting Interpreter-name ((embed)\suffix.lua)

To append the new associtation between the suffix and interpreter, write

suffix.xxx = "INTERPRETERNAME"
suffix.xxx = { "INTERPRETERNAME","OPTION" ... }
suffix[".xxx] = "INTERPRETERNAME"
suffix[".xxx] = { "INTERPRETERNAME","OPTION" ... }
suffix(".xxx","INTERPRETERNAME")
suffix(".xxx",{ "INTERPRETERNAME","OPTION" ... })

in %USERPROFILE%\\.nyagos