andy.boot

Results 95 comments of andy.boot

Should look at this again when this issue is resolved: https://github.com/rust-lang/cargo/issues/2729

New clap crate implies it will give us this for free! https://rust-cli.github.io/book/in-depth/docs.html

Hey, Thanks, Nice fine. From reading about apple copy it appears that the equivalent is `cp reflink=always` in linux. Sadly my linux install doesn't support this :-(. I do not...

Might be able to fix this issue using this: http://m4rw3r.github.io/rust/std/os/macos/fs/trait.MetadataExt.html

Those files have different inodes so I assume they are different files. There might be something we can plugin to in the macos specific metadataext: http://m4rw3r.github.io/rust/std/os/macos/fs/trait.MetadataExt.html in order to detect...

remove this: impl MetadataExt for Metadata; add this: ` println!("{:?}", metadata.as_raw_stat());` and print that data for a regular file, a cloned file, and a different file and see if you...

ok, so it doesn't implement debug so you'd have to print each of the fields out manually.

it's possible, it's something I have wondered about but never implemented.

I have just encountered this too. But for me it only occurs when I'm also using the 'jq' flag and piping that into grep. ``` kubectl logs -l app.kubernetes.io/instance=myinstance -f...

Update: Fixed my problem by remembering to add '--line-buffered' to grep on the end.