mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
475 B
23 lines
475 B
3 years ago
|
// ANCHOR: here
|
||
|
use std::env;
|
||
|
use std::fs;
|
||
|
|
||
|
fn main() {
|
||
|
// --snip--
|
||
|
// ANCHOR_END: here
|
||
|
let args: Vec<String> = env::args().collect();
|
||
|
|
||
|
let query = &args[1];
|
||
|
let filename = &args[2];
|
||
|
|
||
|
println!("Searching for {}", query);
|
||
|
// ANCHOR: here
|
||
|
println!("In file {}", filename);
|
||
|
|
||
|
let contents = fs::read_to_string(filename)
|
||
|
.expect("Something went wrong reading the file");
|
||
|
|
||
|
println!("With text:\n{}", contents);
|
||
|
}
|
||
|
// ANCHOR_END: here
|