Hy,
In a ksh I want to read a file line by line.
My file, file.txt, looks like this:
aaaaa LF
bb bbbb bbb LF
and by LF I mean the end of line.
I used
while read line
do
echo ${#line}
done<file.txt
The output is
5
11
and this is not good because the length of the lines is the same.So I would say that characters like blanks doesn't count.
Is there a way to count all the characters, including blanks, from a line until the end of the line?
Thank you in advance for your answers,
Madalina