jason-minigrep

Crates.iojason-minigrep
lib.rsjason-minigrep
version0.1.1
sourcesrc
created_at2021-07-18 05:44:44.553321
updated_at2021-07-18 06:08:49.1769
description一个用来检索文件内容的命令行工具.
homepagehttps://github.com/jason1105/minigrep
repositoryhttps://github.com/jason1105/minigrep.git
max_upload_size
id424290
size7,011
(jason1105)

documentation

https://github.com/jason1105/minigrep

README

介绍

跟着 Rust 官方的 “The Rust Programing Language” 中的 第12章 编写的一个小程序, 使用指定的关键字过滤文本文件内容, 并输出相关的行.

使用

准备 Rust 环境

然后下载代码

git clone https://github.com/jason1105/minigrep.git

尝试运行一下

cd minigrep
cargo run <query> <filename>
# 例如 cargo run to poem.txt

还可以编译成 exe

cargo build --release
Commit count: 12

cargo fmt