mcharsley
mcharsley
This involves handling -H, -L and finishing find::matchers::type_matcher. Take a look at https://github.com/BurntSushi/walkdir/blob/master/examples/walkdir.rs for hints on how to handle -L with walkdir and https://github.com/BurntSushi/walkdir/blob/master/src/tests.rs on how to test interaction with...
From a code review... > I'm wondering whether the testing-commandline should be made conditional, as it doesn't ship in production. The easiest way to do that would be to use...
At the moment when something goes wrong in a non-fatal way, we just write directly to stderr. We should extend find::Dependencies to abstract out access to stderr much like we...
We currently just return errors created from arbitrary strings. At some point we should switch to a proper find::Error enum
This should be a minor extension to the existing -exec[dir] functionality
We (will soon) have support for -exec and -execdir clauses that end with a ';' (i.e. run this command for every file/directory). We need to also add support for clauses...