I want to ask if you guys knew how can i fix my script. I want to go positive with the let command.. any ideas ?
a=1
read -p "Enter any number: " COUNTER
until [ 1 -eq $COUNTER ]; do
echo "What is the name for $COUNTER ?"
read name1
START=$COUNTER
END=1
for i in $START
do
echo "$i"
echo ${name1}_$i: >> foo.sh
done
echo COUNTER $COUNTER
let a\+=1
done
There are several ways to increment a variable in bash:
Answering your comment, you could do
or
depending on whether you wanted to increment the variable before or after
echo
ing it.