blob: 9ad2e599aaaa5a80f2c11f1b23abeb16d5a51445 [file] [log] [blame]
Jiri Simsa3f4e92d2015-03-24 21:26:37 -07001// Copyright 2015 The Vanadium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Benjamin Prosnitz7cf836d2015-01-30 09:19:19 -08005// This file was auto-generated via go generate.
6// DO NOT UPDATE MANUALLY
7
8/*
Todd Wang6ed3b6c2015-04-08 14:37:04 -07009Command uniqueid generates unique identifiers. It also has an option of
10automatically substituting unique ids with placeholders in files.
Benjamin Prosnitz7cf836d2015-01-30 09:19:19 -080011
12Usage:
13 uniqueid <command>
14
15The uniqueid commands are:
16 generate Generates UniqueIds
17 inject Injects UniqueIds into existing files
18 help Display help for commands or topics
Benjamin Prosnitz7cf836d2015-01-30 09:19:19 -080019
Matt Rosencrantz83b0b7f2015-03-26 16:17:01 -070020The global flags are:
21 -alsologtostderr=true
22 log to standard error as well as files
23 -log_backtrace_at=:0
24 when logging hits line file:N, emit a stack trace
25 -log_dir=
26 if non-empty, write log files to this directory
27 -logtostderr=false
28 log to standard error instead of files
29 -max_stack_buf_size=4292608
30 max size in bytes of the buffer to use for logging stack traces
31 -stderrthreshold=2
32 logs at or above this threshold go to stderr
33 -v=0
34 log level for V logs
Asim Shankarf32d24d2015-04-01 16:34:26 -070035 -v23.credentials=
36 directory to use for storing security credentials
37 -v23.i18n-catalogue=
38 18n catalogue files to load, comma separated
Asim Shankar8196c1e2015-04-08 22:42:18 -070039 -v23.namespace.root=[/(dev.v.io/role/vprod/service/mounttabled)@ns.dev.v.io:8101]
Asim Shankarf32d24d2015-04-01 16:34:26 -070040 local namespace root; can be repeated to provided multiple roots
41 -v23.permissions.file=map[]
Adam Sadovskya4d4a692015-04-20 11:36:49 -070042 specify a perms file as <name>:<permsfile>
Asim Shankarf32d24d2015-04-01 16:34:26 -070043 -v23.permissions.literal=
Adam Sadovskya4d4a692015-04-20 11:36:49 -070044 explicitly specify the runtime perms as a JSON-encoded access.Permissions.
Asim Shankarf32d24d2015-04-01 16:34:26 -070045 Overrides all --v23.permissions.file flags.
46 -v23.proxy=
47 object name of proxy service to use to export services across network
48 boundaries
49 -v23.tcp.address=
50 address to listen on
51 -v23.tcp.protocol=wsh
52 protocol to listen with
53 -v23.vtrace.cache-size=1024
54 The number of vtrace traces to store in memory.
55 -v23.vtrace.collect-regexp=
56 Spans and annotations that match this regular expression will trigger trace
57 collection.
58 -v23.vtrace.dump-on-shutdown=true
59 If true, dump all stored traces on runtime shutdown.
60 -v23.vtrace.sample-rate=0
61 Rate (from 0.0 to 1.0) to sample vtrace traces.
Matt Rosencrantz83b0b7f2015-03-26 16:17:01 -070062 -vmodule=
63 comma-separated list of pattern=N settings for file-filtered logging
64
Todd Wang1624bf92015-04-22 16:53:57 -070065Uniqueid generate
Benjamin Prosnitz7cf836d2015-01-30 09:19:19 -080066
67Generates unique ids and outputs them to standard out.
68
69Usage:
70 uniqueid generate
71
Todd Wang1624bf92015-04-22 16:53:57 -070072Uniqueid inject
Benjamin Prosnitz7cf836d2015-01-30 09:19:19 -080073
74Injects UniqueIds into existing files. Strings of the form "$UNIQUEID$" will be
75replaced with generated ids.
76
77Usage:
78 uniqueid inject <filenames>
79
80<filenames> List of files to inject unique ids into
81
Todd Wang1624bf92015-04-22 16:53:57 -070082Uniqueid help
Benjamin Prosnitz7cf836d2015-01-30 09:19:19 -080083
84Help with no args displays the usage of the parent command.
85
86Help with args displays the usage of the specified sub-command or help topic.
87
88"help ..." recursively displays help for all commands and topics.
89
Todd Wang1624bf92015-04-22 16:53:57 -070090Output is formatted to a target width in runes, determined by checking the
91CMDLINE_WIDTH environment variable, falling back on the terminal width, falling
92back on 80 chars. By setting CMDLINE_WIDTH=x, if x > 0 the width is x, if x < 0
93the width is unlimited, and if x == 0 or is unset one of the fallbacks is used.
Benjamin Prosnitz7cf836d2015-01-30 09:19:19 -080094
95Usage:
96 uniqueid help [flags] [command/topic ...]
97
98[command/topic ...] optionally identifies a specific sub-command or help topic.
99
100The uniqueid help flags are:
Todd Wang1624bf92015-04-22 16:53:57 -0700101 -style=compact
102 The formatting style for help output:
103 compact - Good for compact cmdline output.
104 full - Good for cmdline output, shows all global flags.
105 godoc - Good for godoc processing.
106 Override the default by setting the CMDLINE_STYLE environment variable.
Benjamin Prosnitz7cf836d2015-01-30 09:19:19 -0800107*/
108package main