toml2json
toml2json OPTIONS [TOML_FILENAME] [JSON_NAME]
toml2json is a tool that converts TOML into JSON. It operates on standard input and writes to standard output.
These would get the file named “my.toml” and save it as my.json
toml2json my.toml > my.json
toml2json my.toml my.json
cat my.toml | toml2json -i - > my.json
toml2json 1.2.10