For more detailed information, visit the github repo.

=== Flags & Subcommands ===

Subcommand: init
Generate initialized reamake template file
(without target dir, current directory is assumed):
$ reamake init <optional target dir>

Subcommand: sort
Sort stems automatically into sub-directories in target dir (without target dir, current directory is assumed).
Reamake will not sort files that do not have the extensions: wav, mp3, flac, aif, aiff and m4v.
Proceed with caution and be sure to keep backups of all your stems!
$ reamake sort <target dir>

Subcommand: gen | generate | build
Generate folder structure from template file
(without target dir, current directory is assumed):
$ reamake gen <reamake template file> <target dir>
$ reamake generate <reamake template file> <target dir>
$ reamake build <reamake template file> <target dir>

Subcommand: norm
Normalize stems, as well as check for "fake stereo" (i.e. the file is stereo but the
source is mono) and fold stems into mono files accordingly (without target dir, current directory is assumed).
Reamake will not process files that do not have the extensions: wav, mp3, flac, aif, aiff and m4v.
Proceed with caution and be sure to keep backups of all your stems!
$ reamake norm <target dir>

Subcommand: help
Display help and version information:
$ reamake help

Flag: -var | -v | --var
In your reamake template file you can set variables,
and they can all be overridden through the CLI at your leisure.
Just make sure that you're supplying the right kind of value!
(e.g a folder variable override would need a filepath,
a string variable would need a string and so on)
$ reamake ... -var variable="value"
$ reamake ... -v variable="value"
$ reamake ... --var variable="value"

Example:
$ reamake build template.reamake --var stems="/Users/usr/Downloads/stems/" --var client="New Client" --var rpp="/Users/usr/music/templates/mix.rpp"

