index
:
kaguya
main
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
lib
/
array_to_string.sh
blob: 7d3b0c6710b255ae8975766e7987d75f18b19a91 (
plain
) (
blame
)
1
2
3
4
5
array_to_string
()
{
array
=
"
${
1
}
"
echo
"
${
array
[*]// /
}
"
|
tr
-d
'"'
}