Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
line="premon D0000070 0x201 0x40"  # it has 26 chars
echo $line | wc -c # giving out put 27 chars.

i want to remove the extra char in the string.. please help?

share|improve this question

1 Answer

Actually you don't have an extra char in your string. echo puts a '\n' at the end of line. If you don't want to echo that char, you can do

 echo -n $line | wc -c
share|improve this answer
thanks for your rwply.. – Samit Kumar Patra Dec 13 '12 at 8:04
@SamitKumarPatra if you're pleased with this answer, you can mark this as an answer to your question. – banuj Dec 13 '12 at 8:07
file1.txt premon D0000070 0x201 0x40 script.sh CommandFileName=$1 while read line ./script.sh file1.txt // will it read newline char as well? – Samit Kumar Patra Dec 13 '12 at 8:15
@SamitKumarPatra I don't understand your new question. Who are file1.txt,script.sh? BTW: If you have another question, you should make another topic, because this site works with one question/topic. – banuj Dec 13 '12 at 8:24
yes sure, thes script came as a comment , so it is not understood.. i will put in another question. – Samit Kumar Patra Dec 13 '12 at 8:32

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.