chezmoi_modify_manager 2.0.4

Chezmoi addon to patch ini files with mixed settings and state (experimental rust branch)
Documentation
1
2
3
4
5
6
7
8
use std::io::{stdin, stdout};

use chezmoi_modify_manager::{inner_main, parse_args};

fn main() -> anyhow::Result<()> {
    let opts = parse_args();
    inner_main(opts, || stdin().lock(), || stdout().lock())
}