echo-comment 0.2.0

A bidirectional bash interpreter that converts comments ↔ echo statements
Documentation
1
2
3
4
5
6
7
// comment-echo entrypoint
use echo_comment::{Mode, cli::run_cli};

/// Converts echo statements to comments and runs the script
fn main() {
    run_cli(Mode::EchoToComment);
}