# json2toml A simple CLI tool that converts json files to toml files. The created file's name matches the input file, but with the `.toml` extension instead of `.json`. Inspired heavily by [toml2json](https://github.com/woodruffw/toml2json/). **Usage:** ```powershell json2toml [filename] ``` **Example:** Input: ```json // file.json { "key": "value" } ``` Output: ```toml # output.toml key = "value" ```