EasyArg read variables from command line arguments/system envrioment/.env files
bash
your_app -p --name=some_one -- invalid --hello "world"
will produce:
{
"name": "some_one",
"hello": "world",
"p": "true",
}
rule:
--p = "abc" ✔
--p=abc ✔
--p abc ✔
--p -- abc ✔ // p = "abc",-- will be ignored
-p ✔ // p = "true"
-p=abc ✔
--p ❌
bash
export SOME_VAR=123
Then you can access it by:
let easy = EasyArg::new();
easy.get_string("SOME_VAR") // "123"
You can use .env file in diffrent ways:
-e
/--envfile
/-envfile
argsIf no envfile args, it will search:
.env example
(cargo doc couldn't display full code, checkout the source code at src/lib.rs
)
``` DIR = abc DIR2="dfdadfasfasf" # this is a comment GOOD
=
HHD = ${HOME}/abc/${NOT_EXIST} OK= ```
will produce
{
"OK": "true",
"DIR": "abc",
"DIR2": "dfdadfasfasf",
"HHD": "/home/xxx/abc/${NOT_EXIST}",
"GOOD": "true",
}
Note: All variables will be parsed to string.
easy
represents an instance of EasyArg
.
easy.raw_value("KEY");
easy.get_string("KEY");
easy.must_get_string("IMPORTANT_KEY");
easy.get_bool("KEY");
// --list=a,b,c
easy.get_vec("KEY") // the result: vec!["a", "b", "c"]
your_app -p --s=xbox
your rust code
``` easy.alias("p", "PS5")
easy.tostring("PS5") // "true" easy.tostring("p") // "true" ```
easy.desc_str("a", "description")
easy.desc_flag("b", "description")
output:
Executable: target/debug/xxx
-- a description
- b description