Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

13 Answers

up vote 33 down vote accepted

Maybe, e.g.,

SAVE_IFS=$IFS
IFS=","
FOOJOIN="${FOO[*]}"
IFS=$SAVE_IFS

echo $FOOJOIN
share|improve this answer
Hrm… For some reason, my IFS doesn't want to change: $ IFS=","; $ echo -$IFS- ==> - - – David Wolever Oct 6 '09 at 18:08
2  
If you do that, it thinks that IFS- is the variable. You have to do echo "-${IFS}-" (the curly braces separate the dashes from the variable name). – Dennis Williamson Oct 6 '09 at 18:57
Still got the same result (I just put the dashes in to illustrate the point… echo $IFS does the same thing. – David Wolever Oct 6 '09 at 19:59
6  
That said, this still seems to work… So, like most things with Bash, I'll pretend like I understand it and get on with my life. – David Wolever Oct 6 '09 at 20:06
1  
@David the difference between your echo and Dennis's is that he has used double quoting. The content of IFS is used 'on input' as a declaration of word-separator characters - so you'll always get an empty line without quotes. – martin clayton Oct 6 '09 at 21:52
show 5 more comments

Yet another solution:

#!/bin/bash
foo=('foo bar' 'foo baz' 'bar baz')
bar=$(printf ",%s" "${foo[@]}")
bar=${bar:1}

echo $bar
share|improve this answer
3  
This is the cleanest answer IMO. – Tom Dignan Oct 15 '12 at 3:25
1  
+1 (and typo in #/!bin/bash ) – Elazar May 7 at 18:32
1  
+1. What about printf -v bar ",%s" "${foo[@]}". It is one fork less (actually clone). It is even forking reading a file: printf -v bar ",%s" $(<infile). – TrueY Jun 8 at 22:55
$ foo=(a "b c" d)
$ bar=$(IFS=, ; echo "${foo[*]}")
$ echo "$bar"
a,b c,d
share|improve this answer
1  
The outer double quotes and the double quotes around the colon are not necessary. Only the inner double quotes are necessary: bar=$( IFS=, ; echo "${foo[*]}" ) – ceving Sep 11 '12 at 9:52
2  
+1 for the most compact solution which does not need loops, which does not need external commands and which does not impose additional restrictions on the character set of the arguments. – ceving Sep 11 '12 at 10:04
1  
i like the solution, but it only works if IFS is one character – Jayen May 29 at 1:47

With re-use of @doesn't matters' solution, but with a one statement by avoiding the ${:1} substition and need of an intermediary variable.

echo $(printf "%s," "${LIST[@]}" | cut -d "," -f 1-${#LIST[@]} )

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.

share|improve this answer

This approach takes care of spaces within the values, but requires a loop:

#!/bin/bash

FOO=( a b c )
BAR=""

for index in ${!FOO[*]}
do
    BAR="$BAR,${FOO[$index]}"
done
echo ${BAR:1}
share|improve this answer

Right now I'm using:

TO_IGNORE=(
    E201 # Whitespace after '('
    E301 # Expected N blank lines, found M
    E303 # Too many blank lines (pep8 gets confused by comments)
)
ARGS="--ignore `echo ${TO_IGNORE[@]} | tr ' ' ','`"

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)

share|improve this answer
from where do you get those array values? if you are hardcoding it like that, why not just foo="a,b,c".? – ghostdog74 Oct 6 '09 at 23:55
In this case I actually am hard-coding the values, but I want to put them in an array so I can comment on each individually. I've updated the answer to show you what I mean. – David Wolever Oct 7 '09 at 5:11
bjoin ()
{
  set $1[*]
  IFS=, cat <<< "${!1}"
}

Example

$ FOO=( a b c )

$ bjoin FOO
a,b,c
share|improve this answer
liststr=""
for item in list
do
    liststr=$item,$liststr
done
LEN=`expr length $liststr`
LEN=`expr $LEN - 1`
liststr=${liststr:0:$LEN}

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

share|improve this answer
1  
this is too long – ceving Sep 11 '12 at 9:56
$ FOO=( a b c )
$ BAR=${FOO[@]}
$ BAZ=${BAR// /,}
$ echo $BAZ
a,b,c

Warning, it assumes elements don't have whitespaces.

share|improve this answer

..........................................

s=$(IFS=, eval 'echo "${FOO[*]}"')

..........................................

share|improve this answer
You should flesh out your answer. – Joce Mar 26 at 1:45

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 i in $foo; do printf ",'%s'" $i; done bar=${bar:1} echo $bar 'aa','bb','cc','dd'

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.

share|improve this answer

printf solution that accept separators of any length (based on @doesn't matters answer)

#/!bin/bash
foo=('foo bar' 'foo baz' 'bar baz')

sep=',' # can be of any length
bar=$(printf "${sep}%s" "${foo[@]}")
bar=${bar:${#sep}}

echo $bar
share|improve this answer
a=(a b c)
b=(d e f)
a=(`echo ${a[*]} ${b[*]}`)
echo ${a[*]}
a b c d e f
share|improve this answer
4  
A bit late to the game here… But that's concatenating the arrays (unsafely, too), not joining the elements. – David Wolever Sep 19 '11 at 6:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.