I'm trying to run the following script:
#!/bin/sh
. ./test.prop
for ((i=0; i<10;i++)
do
echo $F($i)
done
The file it sources contains parameter assignments:
F1=20
F2=30
F3=40
.
.
.
The desired output of the script would be
10
20
30
40
.
.
.
What is the proper syntax for $F($i)? or I just can't simply use it?
F? are you reading the numbers from a file or just want to print using a loop? – KingsIndian Oct 2 '12 at 17:55