On Thu, 14 Oct 1999, Peter Flynn wrote:
> How's your shell? I have a script with variables
>> SURNAME1=foo
> SURNAME2=bar
> etc
> SURNAME9=blort
>> and I want to reference these in a loop. My bash is rusty,
> to say the least, and I don't do Perl.
>
#!/bin/sh
# This will work with bash, ksh or even old sh.
s1=one
s2=two
s3=three
s4=four
s5=five
s6=six
counter=1
while [ $counter -le 6 ]
do
var=`eval echo \$s$counter`
echo "Value is $var"
counter=`expr $counter + 1`
done
# Result is
one
two
three
four
five
six
--
-- Harry Moreau -------------
Maintained by the ILUG website team. The aim of Linux.ie is to
support and help commercial and private users of Linux in Ireland. You can
display ILUG news in your own webpages, read backend
information to find out how. Networking services kindly provided by HEAnet, server kindly donated by
Dell. Linux is a trademark of Linus Torvalds,
used with permission. No penguins were harmed in the production or maintenance
of this highly praised website. Looking for the
Indian Linux Users' Group? Try here. If you've read all this and aren't a lawyer: you should be!