Data update
This commit is contained in:
parent
81fd053722
commit
52a6ef48dd
10248 changed files with 63654 additions and 6775 deletions
|
|
@ -1,19 +0,0 @@
|
|||
use std::io::{self, BufReader, Read, BufRead};
|
||||
use std::fs::File;
|
||||
|
||||
fn main() {
|
||||
print_by_line(io::stdin())
|
||||
.expect("Could not read from stdin");
|
||||
|
||||
File::open("/etc/fstab")
|
||||
.and_then(print_by_line)
|
||||
.expect("Could not read from file");
|
||||
}
|
||||
|
||||
fn print_by_line<T: Read>(reader: T) -> io::Result<()> {
|
||||
let buffer = BufReader::new(reader);
|
||||
for line in buffer.lines() {
|
||||
println!("{}", line?)
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue