Hi,
I have a bash script which reads lineas
filename=$
while read LINE
do
......
done < $filename
I wonder how could I store $LINE in a string (my_string) so for each line I can do
echo $my_thing" "$my_string
I tried several things but when I print with echo or printf, $LINE deletes everything before it
Tjans