| Crates.io | sever |
| lib.rs | sever |
| version | 1.1.2 |
| created_at | 2020-10-07 00:59:51.028549+00 |
| updated_at | 2020-10-07 05:36:33.167351+00 |
| description | Coerce hardlinks into new files |
| homepage | |
| repository | |
| max_upload_size | |
| id | 296781 |
| size | 86,038 |
sever Coerce hardlinks into new files
Usage Basic usage is simple: #+BEGIN_SRC shell $ sever file1 file2 file3 dir/* #+END_SRC
** Logging
To change the verbosity level of output messages, set the RUST_LOG env var:
| Flag | Description | Default | |-------------------+-----------------------------------------------------------------+---------| | parallel | Process files in parallel | On | | threads | Process files with a multi-threaded scheduler | Off | | limit-concurrency | Apply a max limit (default 4096) of concurrent operation | On | | recursive | Allow processing of directories by recursing through them | On | | limit-recursion | Apply a max depth of recursion (default 256) | On | | splash | Print program's compiled information when ran with no arguments | On | | paranoid-dedup | Use SHA256 for argument dedup instead of basic hashing | Off |
** Building To build with default features, run:
#+BEGIN_SRC shell $ cargo build --release $ strip target/release/sever #+END_SRC
The binary will be built to target/release/sever
*** Building with non-default features To build with your desired features, run: #+BEGIN_SRC shell $ cargo build --release --no-default-features --features feature1,feature2,feature3,... $ strip target/release/sever #+END_SRC
The binary will be built to target/release/sever