mirror of
https://github.com/darakian/ddh.git
synced 2026-09-10 07:06:21 -04:00
Using ; as the delimiter
This commit is contained in:
parent
871c433077
commit
d7bc903302
|
|
@ -135,9 +135,9 @@ fn main() {
|
|||
println!("Total disk usage {} {}", ((x.file_paths.len() as u64)*x.file_len)/display_divisor, blocksize)})
|
||||
},
|
||||
"csv" => {unique_files.iter().for_each(|x| {
|
||||
println!("{} {:x}", x.file_paths.iter().next().unwrap().to_str().unwrap(), x.file_hash)});
|
||||
println!("{}; {:x}", x.file_paths.iter().next().unwrap().to_str().unwrap(), x.file_hash)});
|
||||
shared_files.iter().for_each(|x| {
|
||||
x.file_paths.par_iter().for_each(|y| println!("{} {:x}", y.to_str().unwrap(), x.file_hash));})
|
||||
x.file_paths.par_iter().for_each(|y| println!("{}; {:x}", y.to_str().unwrap(), x.file_hash));})
|
||||
},
|
||||
_ => {}};
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue