I have the following looop
for i in $(cat numbers.txt);
do echo $i;
wget -a output.txt --no-check-certificate http://localhost:9001 --post-file=netev.xml;
done
but the netev.xml has a fieled which is defined by the variable $1, this $1 needs to corrospond to value of i for that iteration......
how can i make this work?
thanks