vote up 3 vote down star
1

In perl one would simply do the following to store and iterate over a list of names

my @fruit = (apple, orange, kiwi);
foreach (@fruit) {
        print $_;
}

What would the equivalent be in bash?

flag

4 Answers

vote up 8 vote down check

bash (unlike POSIX sh) supports arrays:

fruits=(apple orange kiwi "dried mango")
for fruit in "${fruits[@]}"; do
  echo "${fruit}"
done

This has the advantage that array elements may contain spaces or other members of $IFS; as long as they were correctly inserted as separate elements, they are read out the same way.

link|flag
I'm also seeing "dried" and "mango" printing as separate fruits here, using bash on Debian and Mac OS X. So this doesn't seem to protect against the IFS for me. :-( – emk Sep 17 '08 at 0:35
emk, that's my bad -- I was testing on zsh, not bash; fixed it since. – Charles Duffy Sep 17 '08 at 0:37
I can confirm that this works. – emk Sep 17 '08 at 0:45
vote up 3 vote down

Now that the answer I like has been accepted as the correct answer, I'll now move into another topic: how to use IFS for personal gain. :-P

fruits="apple,orange,kiwifruit,dried mango"
(IFS=,
 for fruit in $fruits; do
     echo "$fruit"
 done)

I've put the code in brackets so that the IFS change is isolated into its own subprocess; thus at the end of the bracketed section, IFS is reverted back to its old value. :-)

link|flag
When I try fruits=(apple orange "kiwi fruit"), bash splits "kiwi" and "fruit" into separate entities during the loop. As long as you for/in, you'll get burned by the IFS. But echo ${fruits[2]} does the right thing, which is nice. – emk Sep 17 '08 at 0:28
See stackoverflow.com/questions/78592/… for a version of this code which works. – emk Sep 17 '08 at 0:46
Thanks for feedback! Fixed. – Chris Jester-Young Sep 17 '08 at 0:48
vote up 1 vote down

Like this:

FRUITS="apple orange kiwi"
for FRUIT in $FRUITS; do
  echo $FRUIT
done

Notice this won't work if there are spaces in the names of your fruits. In that case, see this answer instead, which is slightly less portable but much more robust.

link|flag
Actually this works without the semi-colon. – moran Sep 17 '08 at 0:20
In Bash on Mac OS X, I appear to need either a semi-colon or line break before the 'do'. – emk Sep 17 '08 at 0:22
Yes, you do need the semi-colon unless your "do" is on a new line. Also, $IFS must contain a space for this to work. – Chris Jester-Young Sep 17 '08 at 0:24
depending on IFS during iteration (rather than just assignment) is bad juju, making this answer suboptimal. Granted, mine did too -- I was testing on zsh, fixed for bash since. – Charles Duffy Sep 17 '08 at 0:39
vote up 1 vote down
for i in apple orange kiwi
do
  echo $i
done
link|flag

Your Answer

Get an OpenID
or

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