Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to print a received parameter at the end of every line.. here is what I did:

Printing info WITHOUT user:
CODE:

user=$1
while read line; do
       linearr=($line)
       echo "${linearr[2]} ${linearr[0]} ${linearr[3]}"
done

OUTPUT:

b name2 5
c name3 2
a name1 0

Printing info WITH user at the end of each line:
CODE:

user=$1
while read line; do
       linearr=($line)
       echo "${linearr[2]} ${linearr[0]} ${linearr[3]} $user"
done

OUTPUT:

omare2 5
omare3 2
omare1 0

If I print the user ( echo $user ) it prints normally the name (omar).. Why is this happening?

share|improve this question

1 Answer

up vote 2 down vote accepted

Most likely ${linearr[3]} ends with a \r. ($user could also start with that char.)

(This could happen if you're redirecting from a file with Windows-type line endings \r\n.)

share|improve this answer
Whats the solution to this? Is there a way to override this? – Omar May 20 '12 at 20:10
Best is to clean your data. dos2unix is handy for that. – Mat May 20 '12 at 20:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.