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?
|
1
|
|
|
|
|
|
bash (unlike POSIX sh) supports arrays:
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. |
||||||
|
|
|
Now that the answer I like has been accepted as the correct answer, I'll now move into another topic: how to use
I've put the code in brackets so that the |
||||||
|
|
|
Like this:
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. |
||||||||
|
|
|
for i in apple orange kiwi do echo $i done |
||
|
|