If I've got an array like this in Bash:
FOO=( a b c )
How do I join the elements with commas? For example, producing a,b,c.
|
|
|
Maybe, e.g.,
|
|||||||||||||||||
|
|
Yet another solution:
|
|||||||||||||
|
|
|||||||||||||
|
|
With re-use of @doesn't matters' solution, but with a one statement by avoiding the ${:1} substition and need of an intermediary variable.
printf has 'The format string is reused as often as necessary to satisfy the arguments.' in its man pages, so that the concatenations of the strings is documented. Then the trick is to use the LIST length to chop the last sperator, since cut will retain only the lenght of LIST as fields count. |
|||
|
|
|
This approach takes care of spaces within the values, but requires a loop:
|
|||
|
|
|
Right now I'm using:
Which works, but (in the general case) will break horribly if array elements have a space in them. (For those interested, this is a wrapper script around pep8.py) |
|||||
|
Example
|
||||
|
|
This takes care of the extra comma at the end also. I am no bash expert. Just my 2c, since this is more elementary and understandable |
|||||
|
Warning, it assumes elements don't have whitespaces. |
|||
|
|
|
..........................................
.......................................... |
|||
|
|
|
In case the elements you want to join is not an array just a space separated string, you can do something like this: foo="aa bb cc dd"
bar= for example, my use case is that some strings are passed in my shell script and I need to use this to run on a SQL query: ./my_script "aa bb cc dd" In my_script, I need to do "SELECT * FROM table WHERE name IN ('aa','bb','cc','dd'). Then above command will be useful. |
|||
|
|
|
printf solution that accept separators of any length (based on @doesn't matters answer)
|
|||
|
|
a=(a b c)
b=(d e f)
a=(`echo ${a[*]} ${b[*]}`)
echo ${a[*]}
a b c d e f
|
|||||
|