You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/admin.go
+37-1Lines changed: 37 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -146,6 +146,32 @@ var (
146
146
Name: "list",
147
147
Usage: "List auth sources",
148
148
Action: runListAuth,
149
+
Flags: []cli.Flag{
150
+
cli.IntFlag{
151
+
Name: "min-width",
152
+
Usage: "Minimal cell width including any padding for the formatted table",
153
+
Value: 0,
154
+
},
155
+
cli.IntFlag{
156
+
Name: "tab-width",
157
+
Usage: "width of tab characters in formatted table (equivalent number of spaces)",
158
+
Value: 8,
159
+
},
160
+
cli.IntFlag{
161
+
Name: "padding",
162
+
Usage: "padding added to a cell before computing its width",
163
+
Value: 1,
164
+
},
165
+
cli.StringFlag{
166
+
Name: "pad-char",
167
+
Usage: `ASCII char used for padding if padchar == '\\t', the Writer will assume that the width of a '\\t' in the formatted output is tabwidth, and cells are left-aligned independent of align_left (for correct-looking results, tabwidth must correspond to the tab width in the viewer displaying the result)`,
168
+
Value: "\t",
169
+
},
170
+
cli.BoolFlag{
171
+
Name: "vertical-bars",
172
+
Usage: "Set to true to print vertical bars between columns",
0 commit comments