shell2batch 0.4.5

Coverts simple basic shell scripts to windows batch scripts.
Documentation
#![feature(test)]
extern crate test;

use shell2batch;
use test::Bencher;

#[bench]
fn convert(bencher: &mut Bencher) {
    bencher.iter(|| {
        let output = shell2batch::convert(
            r#"

            #this is some test code
            cp file1 file2

            #another
            mv file2 file3
            "#,
        );

        assert_eq!(
            output,
            r#"

@REM this is some test code
copy file1 file2

@REM another
move file2 file3
"#
        );
    });
}