A simple CLI tool to decompile .ido files, and compile raw file back to .ido file.
You need to compile it yourself in able to use this tool.
> cargo build --release
> # OR Install globally
> cargo install --path .
A TUI tool to compile and decompile .ido files.
Usage: idotool.exe --file <FILE> --output <OUTPUT> <--decompile|--compile>
Options:
-d, --decompile
Decompile .ido file
-c, --compile
Compile .xml file to .ido
-f, --file <FILE>
Input .ido file
-o, --output <OUTPUT>
Output file path
-h, --help
Print help (see a summary with '-h')
-V, --version
Print version
> # Decompile .ido file
> idotool --decompile --file myidofile.ido --output rawidocontent
> # Compile raw IDO content to .ido
> idotool --compile --file myrawidocontent --output myidofile.ido