diff options
author | Stefan Kreutz <mail@skreutz.com> | 2024-03-24 15:04:09 +0100 |
---|---|---|
committer | Stefan Kreutz <mail@skreutz.com> | 2024-03-24 15:04:09 +0100 |
commit | c1fa48e9bd617d70e823efef5d6dcea41b1d2087 (patch) | |
tree | 421e69c512ac54bf65495ef23fd7d9ec5a5e67d5 /IDEAS | |
download | brck-0.1.0.tar |
Add initial implementationbrck-0.1.0
Diffstat (limited to 'IDEAS')
-rw-r--r-- | IDEAS | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -0,0 +1,24 @@ +Accept units (k, m, g) for --chunk-size. + +Add option -k/--keep-going to continue in case of IO errors such as permission denied. + +Add option -e/--errexit to immediately exit >0 on the first denied difference. + +Add option to scan ahead and show progress on standard error. + +Hash and check symlinks targets? + https://doc.rust-lang.org/std/fs/fn.read_link.html + https://unix.stackexchange.com/questions/63876/changing-the-timestamp-of-a-symlink + +Estimate default number of worker threads based on disk read speed and CPU speed. + +Test effect of stdout buffering and/or locking on performance with high verbosity. + https://rust-cli.github.io/book/tutorial/output.html#a-note-on-printing-performance + +Generate a man page. + https://rust-cli.github.io/book/in-depth/docs.html + https://lib.rs/crates/clap_mangen + +Use common exit codes. + https://man.openbsd.org/sysexits + https://github.com/dtolnay/anyhow/issues/247 |