-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_output
14 lines (14 loc) · 857 Bytes
/
test_output
1
2
3
4
5
6
7
8
9
10
11
12
13
14
declare -A conf=([protocol]="true" [user]="true" )
declare -A conf_protocol=([version]="6" )
declare -A conf_user=([active]="true" [pi]="3.14159" [email]="bob@smith.com" [name]="Bob Smith" )
declare -A alt_fd=([protocol]="true" [user]="true" )
declare -A alt_fd_protocol=([version]="6" )
declare -A alt_fd_user=([active]="true" [pi]="3.14159" [email]="bob@smith.com" [name]="Bob Smith" )
declare -A inside_func=([protocol]="true" [user]="true" )
declare -A inside_func_protocol=([version]="6" )
declare -A inside_func_user=([active]="true" [pi]="3.14159" [email]="bob@smith.com" [name]="Bob Smith" )
inside_func is local!
declare -A inside_func=([protocol]="true" [user]="true" )
declare -A inside_func_protocol=([version]="6" )
declare -A inside_func_user=([active]="true" [pi]="3.14159" [email]="bob@smith.com" [name]="Bob Smith" )
inside_func is global!