Generate a random directory hierarchy with some number of files A pseudo-random directory hierarchy will be generated (seeded by this command's input parameters) containing approximately the target number of files. The exact configuration of files and directories in the hierarchy is probabilistically determined to mostly match the specified parameters. Generated files and directories are named using monotonically increasing numbers, where files are named `n` and directories are named `n.dir` for a given natural number `n`. By default, generated files are empty, but random data can be used as the file contents with the `total-bytes` option. Usage: ftzz [OPTIONS] --files Arguments: The directory in which to generate files The directory will be created if it does not exist. Options: -n, --files The number of files to generate Note: this value is probabilistically respected, meaning any number of files may be generated so long as we attempt to get close to N. --files-exact Whether or not to generate exactly N files -b, --total-bytes The total amount of random data to be distributed across the generated files Note: this value is probabilistically respected, meaning any amount of data may be generated so long as we attempt to get close to N. [default: 0] --fill-byte Specify a specific fill byte to be used instead of deterministically random data This can be used to improve compression ratios of the generated files. --bytes-exact Whether or not to generate exactly N bytes -e, --exact Whether or not to generate exactly N files and bytes -d, --max-depth The maximum directory tree depth [default: 5] -r, --ftd-ratio The number of files to generate per directory (default: files / 1000) Note: this value is probabilistically respected, meaning not all directories will have N files). --seed Change the PRNG's starting seed For example, you can use bash's `$RANDOM` function. [default: 0] -h, --help Print help (use `-h` for a summary) -q, --quiet... Decrease logging verbosity -v, --verbose... Increase logging verbosity -V, --version Print version