> Alternatively you can can add a shell alias to your shell startup file. The drawback of
> this approach is that runic can only be invoked from the shell and not by other programs.
> ```sh
> alias runic="julia --project=@runic -e 'using Runic; exit(Runic.main(ARGS))' --"
> # alias runic="julia --project=@runic -m Runic"
> alias runic="julia --project=@runic --startup-file=no -e 'using Runic; exit(Runic.main(ARGS))' --"
> # alias runic="julia --project=@runic --startup-file=no -m Runic"
> ```
> [!NOTE]
> In Julia 1.12 and later the `main` function can be invoked with the `-m` flag, i.e.:
> ```sh
> julia --project=@runic -m Runic <args>
> julia --project=@runic --startup-file=no -m Runic <args>
> ```
## Usage
@ -381,7 +381,7 @@ any of the input files are incorrectly formatted. As an example, the following i
@@ -381,7 +381,7 @@ any of the input files are incorrectly formatted. As an example, the following i