-
-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathbashly.yml
More file actions
50 lines (40 loc) · 797 Bytes
/
bashly.yml
File metadata and controls
50 lines (40 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: configly
help: Sample application that uses the config functions
version: 0.1.0
commands:
- name: set
alias: s
help: Save a value in the config file
args:
- name: key
required: true
help: Config key
- name: value
required: true
help: Config value
examples:
- configly set hello world
- configly set login.name Megatron
- name: get
alias: g
help: Read a value from the config file
args:
- name: key
required: true
help: Config key
examples:
- configly get hello
- configly get login.name
- name: del
alias: d
help: Delete a value from the config file
args:
- name: key
required: true
help: Config key
examples:
- configly del hello
- configly del login.name
- name: list
alias: l
help: Show all values