tomlpipe
A CLI tool to edit TOML config file.
Install
TODO
tomlpipe override
- 標準入力 or
--in <file>でベースとなる toml を受け取る -
--override-toml <file>上書きする toml を渡す -
--override-toml-dot <toml-dot>=<val>foo.bar=baz -
--override-toml-dot-type <type>(default:String)Stringintbool
How to use
sample_base.toml
# aaa
= "bbb"
[]
= true
sample_override.toml
[]
= false
output
# aaa
= "bbb"
[]
= false