Crates.io | jason-minigrep |
lib.rs | jason-minigrep |
version | 0.1.1 |
source | src |
created_at | 2021-07-18 05:44:44.553321 |
updated_at | 2021-07-18 06:08:49.1769 |
description | 一个用来检索文件内容的命令行工具. |
homepage | https://github.com/jason1105/minigrep |
repository | https://github.com/jason1105/minigrep.git |
max_upload_size | |
id | 424290 |
size | 7,011 |
跟着 Rust 官方的 “The Rust Programing Language” 中的 第12章 编写的一个小程序, 使用指定的关键字过滤文本文件内容, 并输出相关的行.
然后下载代码
git clone https://github.com/jason1105/minigrep.git
尝试运行一下
cd minigrep
cargo run <query> <filename>
# 例如 cargo run to poem.txt
还可以编译成 exe
cargo build --release