1
1
command :
2
2
help : Define the root command, or any sub-command.
3
- url : https://bashly.dannyb.co /configuration/command/
3
+ url : https://bashly.dev /configuration/command/
4
4
example : |-
5
5
name: rush
6
6
help: Personal package manager
@@ -17,7 +17,7 @@ command:
17
17
18
18
command.alias :
19
19
help : Specify one or more aliases for this sub-command.
20
- url : https://bashly.dannyb.co /configuration/command/#alias
20
+ url : https://bashly.dev /configuration/command/#alias
21
21
example : |-
22
22
# Define a single alias
23
23
command:
@@ -36,7 +36,7 @@ command.alias:
36
36
37
37
command.args :
38
38
help : Define a list of positional arguments. See `arg` for reference.
39
- url : https://bashly.dannyb.co /configuration/command/#args
39
+ url : https://bashly.dev /configuration/command/#args
40
40
example : |-
41
41
args:
42
42
- name: repo
@@ -45,7 +45,7 @@ command.args:
45
45
46
46
command.catch_all :
47
47
help : Specify that this command should allow for additional arbitrary arguments or flags.
48
- url : https://bashly.dannyb.co /configuration/command/#catch_all
48
+ url : https://bashly.dev /configuration/command/#catch_all
49
49
example : |-
50
50
commands:
51
51
- name: download
@@ -67,7 +67,7 @@ command.catch_all:
67
67
68
68
command.commands :
69
69
help : Define a list of sub-commands. See `command` for reference.
70
- url : https://bashly.dannyb.co /configuration/command/#commands
70
+ url : https://bashly.dev /configuration/command/#commands
71
71
example : |-
72
72
commands:
73
73
- name: add
@@ -76,7 +76,7 @@ command.commands:
76
76
77
77
command.completions :
78
78
help : Specify a list of additional completion suggestions when used in conjunction with `bashly add completions`.
79
- url : https://bashly.dannyb.co /configuration/command/#completions
79
+ url : https://bashly.dev /configuration/command/#completions
80
80
example : |-
81
81
commands:
82
82
- name: view
@@ -88,7 +88,7 @@ command.completions:
88
88
89
89
command.default :
90
90
help : Specify that this sub-command will be executed implicitly.
91
- url : https://bashly.dannyb.co /configuration/command/#default
91
+ url : https://bashly.dev /configuration/command/#default
92
92
example : |-
93
93
# This command will execute when the command line is not
94
94
# recognized.
@@ -106,7 +106,7 @@ command.default:
106
106
107
107
command.dependencies :
108
108
help : Specify a list of required external commands that are needed to run this command.
109
- url : https://bashly.dannyb.co /configuration/command/#dependencies
109
+ url : https://bashly.dev /configuration/command/#dependencies
110
110
example : |-
111
111
# Array syntax
112
112
dependencies:
@@ -128,7 +128,7 @@ command.dependencies:
128
128
129
129
command.environment_variables :
130
130
help : Define a list of environment variables. See `environment_variable` for reference.
131
- url : https://bashly.dannyb.co /configuration/command/#environment_variables
131
+ url : https://bashly.dev /configuration/command/#environment_variables
132
132
example : |-
133
133
environment_variables:
134
134
- name: config_path
@@ -140,7 +140,7 @@ command.environment_variables:
140
140
141
141
command.examples :
142
142
help : Define one or more example messages.
143
- url : https://bashly.dannyb.co /configuration/command/#examples
143
+ url : https://bashly.dev /configuration/command/#examples
144
144
example : |-
145
145
# Use an array of examples for simple one-liners.
146
146
examples:
@@ -159,7 +159,7 @@ command.examples:
159
159
160
160
command.expose :
161
161
help : Specify that the sub-commands of this command should be visible when showing the usage of its parent.
162
- url : https://bashly.dannyb.co /configuration/command/#expose
162
+ url : https://bashly.dev /configuration/command/#expose
163
163
example : |-
164
164
name: cli
165
165
commands:
@@ -190,7 +190,7 @@ command.expose:
190
190
191
191
command.extensible :
192
192
help : Specify that this command can be extended by external means.
193
- url : https://bashly.dannyb.co /configuration/command/#extensible
193
+ url : https://bashly.dev /configuration/command/#extensible
194
194
example : |-
195
195
name: mygit
196
196
help: Wrapper for git
@@ -206,7 +206,7 @@ command.extensible:
206
206
207
207
command.filename :
208
208
help : Specify the path (relative to src) to the partial source code file.
209
- url : https://bashly.dannyb.co /configuration/command/#filename
209
+ url : https://bashly.dev /configuration/command/#filename
210
210
example : |-
211
211
commands:
212
212
- name: connect
@@ -215,7 +215,7 @@ command.filename:
215
215
216
216
command.filters :
217
217
help : Specify a list of custom filter functions that will prevent the command from running unless certain conditions are met.
218
- url : https://bashly.dannyb.co /configuration/command/#filters
218
+ url : https://bashly.dev /configuration/command/#filters
219
219
example : |-
220
220
commands:
221
221
- name: container
@@ -235,7 +235,7 @@ command.filters:
235
235
236
236
command.flags :
237
237
help : Define a list of option flags. See `flag` for reference.
238
- url : https://bashly.dannyb.co /configuration/command/#flags
238
+ url : https://bashly.dev /configuration/command/#flags
239
239
example : |-
240
240
flags:
241
241
- long: --purge
@@ -244,13 +244,13 @@ command.flags:
244
244
245
245
command.footer :
246
246
help : Specify a message to show at the bottom of the help text.
247
- url : https://bashly.dannyb.co /configuration/command/#footer
247
+ url : https://bashly.dev /configuration/command/#footer
248
248
example : |-
249
249
footer: For further help visit https://my.docs-site.com
250
250
251
251
command.function :
252
252
help : Specify a different base function name for this command.
253
- url : https://bashly.dannyb.co /configuration/command/#function
253
+ url : https://bashly.dev /configuration/command/#function
254
254
example : |-
255
255
commands:
256
256
- name: container-start
@@ -271,7 +271,7 @@ command.function:
271
271
272
272
command.group :
273
273
help : Specify the group that this command belongs to.
274
- url : https://bashly.dannyb.co /configuration/command/#group
274
+ url : https://bashly.dev /configuration/command/#group
275
275
example : |-
276
276
command:
277
277
name: start
@@ -280,7 +280,7 @@ command.group:
280
280
281
281
command.help :
282
282
help : Specify the help text to show when displaying usage.
283
- url : https://bashly.dannyb.co /configuration/command/#help
283
+ url : https://bashly.dev /configuration/command/#help
284
284
example : |-
285
285
name: docker
286
286
help: Runtime for containers
@@ -291,7 +291,7 @@ command.help:
291
291
292
292
command.name :
293
293
help : Specify the name of the command. This option is required.
294
- url : https://bashly.dannyb.co /configuration/command/#name
294
+ url : https://bashly.dev /configuration/command/#name
295
295
example : |-
296
296
name: docker
297
297
help: Runtime for containers
@@ -302,7 +302,7 @@ command.name:
302
302
303
303
command.private :
304
304
help : Specify that this command should not be displayed in the help text.
305
- url : https://bashly.dannyb.co /configuration/command/#private
305
+ url : https://bashly.dev /configuration/command/#private
306
306
example : |-
307
307
commands:
308
308
- name: completions
@@ -311,7 +311,7 @@ command.private:
311
311
312
312
command.variables :
313
313
help : Define a list of global bash variables. See `variable` for reference.
314
- url : https://bashly.dannyb.co /configuration/command/#variables
314
+ url : https://bashly.dev /configuration/command/#variables
315
315
example : |-
316
316
variables:
317
317
# Simple value
@@ -332,7 +332,7 @@ command.variables:
332
332
333
333
command.version :
334
334
help : Specify the version to show when running with `--version`.
335
- url : https://bashly.dannyb.co /configuration/command/#version
335
+ url : https://bashly.dev /configuration/command/#version
336
336
example : |-
337
337
name: rush
338
338
help: Personal package manager
0 commit comments