# maketorrent A Bittorrent meta file generator ## Usage ``` USAGE: maketorrent [OPTIONS] --announce OPTIONS: -a, --announce Announce URL. -c, --comment Add a comment to the Torrent file. -h, --help Prints help information -n, --name Set the name of the Torrent file.[default: basename of the target] -d, --no-date Don't write the creation date. -o, --output Set the path and filename of the Torrent file.[default: .torrent] -l, --piece-length Set the piece length to 2^n Bytes. [default: auto] -p, --private Set the private flag. -t, --threads Number of threads to use for hashing.[default: number of logical cores] -V, --version Prints version information -v, --verbose Explain what is being done. ARGS: ``` ## Installation ```bash cargo install maketorrent ``` or ```bash git clone https://github.com/fuchsi/maketorrent.git cd maketorrent cargo install ```