findutils 0.9.0

Rust implementation of GNU findutils
Documentation
1
2
3
4
5
6
7
8
9
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.

fn main() {
    let args = std::env::args().collect::<Vec<String>>();
    let strs: Vec<&str> = args.iter().map(std::convert::AsRef::as_ref).collect();
    std::process::exit(findutils::locate::locate_main(strs.as_slice()));
}