#!/bin/sh LISTA="" while read line do # echo "$line" echo $LISTA LISTA=$LISTA$line echo $LISTA done < libros.csv echo $LISTA