Crates.io | fcmp |
lib.rs | fcmp |
version | 0.3.1 |
source | src |
created_at | 2022-02-25 22:18:53.36368 |
updated_at | 2022-02-26 06:06:32.684438 |
description | File compare utility |
homepage | https://github.com/solarretrace/fcmp-rs |
repository | https://github.com/solarretrace/fcmp-rs |
max_upload_size | |
id | 539685 |
size | 48,111 |
fcmp
File compare library and command line utilityTakes a list of file names and returns the most recently modified file.
If the result would be ambiguous, the first occurring ambiguous item in the file list will be returned.
There are currently two install options:
Install cargo and run cargo install stall
.
Build stall
from source. Clone this repository, install Rust, run Cargo build --release
, and move the compiled binary into your $PATH
somewhere.
USAGE:
fcmp [OPTIONS] [PATHS]...
ARGS:
<PATHS>...
File paths to compare
OPTIONS:
-d, --diff
Consider files with the same content as equal
-h, --help
Print help information
-i, --index
Return the (0-based) index of the file instead of the path
-m, --missing <MISSING>
Determines how to handle missing files.
By default, missing files will be treated as older than all other files.
[default: oldest]
[possible values: oldest, newest, ignore, error]
-r, --reverse
Return the oldest file instead of the newest
-V, --version
Print version information
Stall is licenced with the MIT license or the Apache version 2.0 license, at your option.