echo-comment 0.2.0

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

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