> > IFS='\n' > > I always got around this with > > IFS=' > ' > > But that's crap, anyone know another way? > > Mark > Yup. Do the following: IFS='^V^M' where ^V means pressing ctrl+v and ^M means just hitting return. Steve