Subject: | ttree --...=... |
ttree --help says that options with arguments may be separated with a "=". In reality you have to separate them with a space. E.g.:
ttree --plugin_base=Some::Thing file
throws an error
--plugin_base=Some::Thing: invalid option
while
ttree --plugin_base Some::Thing file
works fine.