7 lines
73 B
Bash
7 lines
73 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
test="a:b:c:d"
|
||
|
|
||
|
new=()
|
||
|
array -j ':' new $test
|
||
|
declare -p new
|