Nikos Alexandris wrote: > Is it wrong to simply: > > for Image in `echo $GIS_OPT_MSX | tr "," "\ "` ; do echo ${Image} ; done That will work, provided that none of the values contain spaces. But setting IFS is more robust and efficient. -- Glynn Clements <glynn at gclements.plus.com>