Hi.
I have one the file "diogo.txt" with this format:
one
two
thee
four
and when i execute the next command:
{
while read line_data
do
echo "${line_data}"" "
done
} < diogo.txt
it gives me:
one
two
thee
four
Is there any way, to see in the right way.
Thanks any way.
DR
I have one the file "diogo.txt" with this format:
one
two
thee
four
and when i execute the next command:
{
while read line_data
do
echo "${line_data}"" "
done
} < diogo.txt
it gives me:
one
two
thee
four
Is there any way, to see in the right way.
Thanks any way.
DR