mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
21 lines
160 B
Bash
21 lines
160 B
Bash
a=(1 2 3)
|
|
a=([1]=2)
|
|
a=([1]=2,2,3)
|
|
a=("a")
|
|
a=(a, "a")
|
|
a=(a "a" "b" c d)
|
|
a=(
|
|
a
|
|
)
|
|
a=(
|
|
a,
|
|
)
|
|
a=(
|
|
a=a
|
|
)
|
|
a=(
|
|
$(echo 1)
|
|
)
|
|
#now test as simple command
|
|
a=([1]=2 2 3)
|