Re: Arrays

2019-05-26 Thread Eduardo A . Bustamante López
On Sun, May 26, 2019 at 12:24:43PM -0700, Steven Penny wrote: > The Bash shell makes it possible to create arrays: > > https://gnu.org/software/bash/manual/html_node/Arrays > > Dash shell currently does not have this feature. A workaround is to use ARGV: > >$ set aaa bbb ccc >$ echo

Arrays

2019-05-26 Thread Steven Penny
The Bash shell makes it possible to create arrays: https://gnu.org/software/bash/manual/html_node/Arrays Dash shell currently does not have this feature. A workaround is to use ARGV: $ set aaa bbb ccc $ echo "$2" bbb However this is limited as only one array can exist at a time,