A clone of grep built in rust
Currently bare-bones but supports both piped data and file + directory searching
To compile to a DOS executable you need binutils and llvm-tools-preview
cargo install cargo-binutils
rustup component add llvm-tools-previewThen either build the project and generate a COM file with:
cargo build --profile dos --features no_color
cargo objcopy --profile dos -- -O binary --binary-architecture=i386:x86 rust_dos.comor run:
make dos