12 lines
157 B
Bash
Executable File
12 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
|
|
declare -A array
|
|
array[color,red]=100
|
|
array[color,blue]=200
|
|
array[style,bold]=300
|
|
array[style,underline]=400
|
|
|
|
|
|
echo ${array[color,blue]}
|
|
|
|
exit 0 |