You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
235 B
14 lines
235 B
4 years ago
|
typeset -A DOMAINS4
|
||
|
DOMAINS4=(
|
||
|
[domain.tld]="key_one"
|
||
|
[sub1.domain.tld]="key_two"
|
||
|
[sub2.domain.tld]="key_three"
|
||
|
)
|
||
|
|
||
|
typeset -A DOMAINS6
|
||
|
DOMAINS6=(
|
||
|
[domain.tld]="key_one"
|
||
|
[sub1.domain.tld]="key_four"
|
||
|
[sub3.tomain.tld]="key_five"
|
||
|
)
|