From 2f784443748819211b833cbd65f15ef076a80162 Mon Sep 17 00:00:00 2001 From: xrstf Date: Sat, 6 Jan 2024 11:01:41 +0100 Subject: [PATCH] update readme --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d32b64c..636378e 100644 --- a/README.md +++ b/README.md @@ -98,9 +98,10 @@ Rudi comes with a standalone CLI tool called `rudi`. Usage of rudi: -i, --interactive Start an interactive REPL to run expressions. -s, --script string Load Rudi script from file instead of first argument (only in non-interactive mode). + -l, --library stringArray Load additional Rudi file(s) to be be evaluated before the script (can be given multiple times). --var stringArray Define additional global variables (can be given multiple times). - -f, --stdin-format string What data format is used for data provided on stdin, one of [raw json yaml toml]. (default "yaml") - -o, --output-format string What data format to use for outputting data, one of [raw json yaml toml]. (default "json") + -f, --stdin-format string What data format is used for data provided on stdin, one of [raw json json5 yaml yamldocs toml]. (default "yaml") + -o, --output-format string What data format to use for outputting data, one of [raw json yaml yamldocs toml]. (default "json") --enable-funcs Enable the func! function to allow defining new functions in Rudi code. -c, --coalesce string Type conversion handling, one of [strict pedantic humane]. (default "strict") -h, --help Show help and documentation.