Search Results

3
votes
4answers
843 views

What is a good equivalent to Perl lists in bash?

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 …