Todd Wang | 0d12d71 | 2014-10-06 17:25:41 -0700 | [diff] [blame] | 1 | // This file was auto-generated via go generate. |
| 2 | // DO NOT UPDATE MANUALLY |
| 3 | |
| 4 | /* |
| 5 | The binary tool facilitates interaction with the veyron binary repository. |
| 6 | |
| 7 | Usage: |
| 8 | binary <command> |
| 9 | |
| 10 | The binary commands are: |
| 11 | delete Delete binary |
| 12 | download Download binary |
| 13 | upload Upload binary |
| 14 | help Display help for commands or topics |
| 15 | Run "binary help [command]" for command usage. |
| 16 | |
| 17 | The global flags are: |
| 18 | -alsologtostderr=true: log to standard error as well as files |
| 19 | -log_backtrace_at=:0: when logging hits line file:N, emit a stack trace |
| 20 | -log_dir=: if non-empty, write log files to this directory |
| 21 | -logtostderr=false: log to standard error instead of files |
| 22 | -max_stack_buf_size=4292608: max size in bytes of the buffer to use for logging stack traces |
| 23 | -stderrthreshold=2: logs at or above this threshold go to stderr |
| 24 | -v=0: log level for V logs |
| 25 | -vmodule=: comma-separated list of pattern=N settings for file-filtered logging |
| 26 | -vv=0: log level for V logs |
| 27 | |
| 28 | Binary Delete |
| 29 | |
| 30 | Delete connects to the binary repository and deletes the specified binary |
| 31 | |
| 32 | Usage: |
| 33 | binary delete <von> |
| 34 | |
| 35 | <von> is the veyron object name of the binary to delete |
| 36 | |
| 37 | Binary Download |
| 38 | |
| 39 | Download connects to the binary repository, downloads the specified binary, and |
| 40 | writes it to a file. |
| 41 | |
| 42 | Usage: |
| 43 | binary download <von> <filename> |
| 44 | |
| 45 | <von> is the veyron object name of the binary to download |
| 46 | <filename> is the name of the file where the binary will be written |
| 47 | |
| 48 | Binary Upload |
| 49 | |
| 50 | Upload connects to the binary repository and uploads the binary of the specified |
| 51 | file. When successful, it writes the name of the new binary to stdout. |
| 52 | |
| 53 | Usage: |
| 54 | binary upload <von> <filename> |
| 55 | |
| 56 | <von> is the veyron object name of the binary to upload |
| 57 | <filename> is the name of the file to upload |
| 58 | |
| 59 | Binary Help |
| 60 | |
| 61 | Help with no args displays the usage of the parent command. |
| 62 | Help with args displays the usage of the specified sub-command or help topic. |
| 63 | "help ..." recursively displays help for all commands and topics. |
| 64 | |
| 65 | Usage: |
| 66 | binary help [flags] [command/topic ...] |
| 67 | |
| 68 | [command/topic ...] optionally identifies a specific sub-command or help topic. |
| 69 | |
| 70 | The help flags are: |
| 71 | -style=text: The formatting style for help output, either "text" or "godoc". |
| 72 | */ |
| 73 | package main |