If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > Unix Shell Scripts > Read file line by line and calculate length of the line

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-11-07, 05:31
AngelMady AngelMady is offline
Registered User
 
Join Date: Oct 2007
Posts: 4
Read file line by line and calculate length of the line

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
Reply With Quote
  #2 (permalink)  
Old 10-11-07, 07:36
pdreyer pdreyer is offline
Registered User
 
Join Date: May 2005
Location: South Africa
Posts: 1,268
Code:
IFS=
while read line 
do
  echo "${#line} --->${line}<---"
done <<EOF
ab
c d
  e f  
EOF

2 --->ab<---
3 --->c d<---
7 --->  e f  <---
Reply With Quote
  #3 (permalink)  
Old 10-11-07, 08:06
AngelMady AngelMady is offline
Registered User
 
Join Date: Oct 2007
Posts: 4
So I read about IFS and I understood your solution.
Thank you so much
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On