1 pub const MANPAGE: &'static str = r#"NAME 2 permutate - efficient command-line permutator written in Rust 3 4 SYNOPSIS 5 permutate [-f | -h] [ARGS... MODE]... 6 7 DESCRIPTION 8 Permutate is a command-line permutator written in Rust, originally designed for inclusion 9 within the Rust implementation of Parallel. Following the UNIX philosophy, permutate has 10 additionally been spun into both an application and library project to serve as a standalone 11 application. The syntax for permutate is nearly identical to Parallel. 12 13 OPTIONS 14 -b, --benchmark 15 Performs a benchmark by permutation all possible values without printing. 16 17 -f, --files 18 The first list of inputs will be interpreted as files. 19 20 -h, --files 21 Prints this help information. 22 23 -n, --no-delimiters 24 Disable the spaced deliminters between elements. 25 26 MODES 27 ::: 28 All following arguments will be interpreted as arguments. 29 30 :::+ 31 All following arguments will be appended to the previous list. 32 33 :::: 34 All following arguments will be interpreted as files. 35 36 ::::+ 37 All following arguments from files will be appended to the previous list. 38 39 "#; 40