Normalize CLI options and help display

This commit is contained in:
2025-01-01 08:34:17 -06:00
committed by James Eversole
parent 3ab9b58194
commit 57f7389c4d
2 changed files with 25 additions and 15 deletions

View File

@ -74,17 +74,17 @@ tricu eval [OPTIONS]
Evaluate a file and return the result of the expression in the final line
-f --file=FILE Optional input file path for evaluation.
Defaults to stdin.
Defaults to stdin.
-o --output=OUTPUT Optional output file path for resulting output.
Defaults to stdout.
Defaults to stdout.
-t --form=FORM Optional output form: (fsl|tree|ast|ternary|ascii).
Defaults to fsl.
Defaults to fsl.
tricu decode [OPTIONS]
Decode a Tree Calculus value into a string representation
-f --input=ITEM Optional file path to attempt decoding.
Defaults to stdin.
-f --file=FILE Optional input file path to attempt decoding.
Defaults to stdin.
```
## Acknowledgements