I am doing this script (with zsh, but I guess that it is not very important):
mylist=`seq 1 3`
for i in $mylist ; do echo "abc/$i" ; done
This gives :
abc/1
2
3
while I would like to see :
abc/1
abc/2
abc/3
A huge thanks to somebody that may find why it does not work/how to do.