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

I want a bash way to read lines from standard input (so I can pipe input to it), and remove just the leading and trailing space characters. Piping to echo does not work.

For example, if the input is:

  12 s3c  
  sd wqr  

the output should be:

12 s3c
sd wqr

I want to avoid writing a python script or similar for something as trivial as this. Any help is appreciated!

share|improve this question

3 Answers

up vote 2 down vote accepted

You can use sed to trim it.

sed 's/^ *//' | sed 's/ *$//'

You can test it really easily on a command line by doing:

echo -n "  12 s3c  " | sed 's/^ *//' | sed 's/ *$//' && echo c
share|improve this answer
6  
Two sed processes is uncomfortably heavyweight. Why not: sed 's/^ *//;s/ *$//'? – Jonathan Leffler Dec 12 '10 at 16:18
That works against the data he provided. I gave you points for that! :D – phillip Dec 12 '10 at 16:27
3  
why not even sed -r 's/ *(.*) */\1/g'? – Michael Kopinsky Dec 12 '10 at 22:19
And \s instead of space in a case of TABs. – Nakilon May 10 '12 at 8:25
1  
So, here's what I found: sed -r 's/\s*(.*)\s*/\1/' will mostly work, but I think it will not trim the end of the line, since the .* is greedy. I would try 's/\s*(.*?)\s*$/\1/'. Basically, this looks for any whitespace up to the first non-whitespace, then any characters up to the first set of whitespace which is followed by the end of line. At least, that is the intent. – Nathan Jul 19 '12 at 17:02
$ trim () { read -r line; echo "$line"; }
$ echo "   aa   bb   cc   " | trim
aa   bb   cc
$ a=$(echo "   aa   bb   cc   " | trim)
$ echo "..$a.."
..aa   bb   cc..

To make it work for multi-line input, just add a while loop:

trim () { while read -r line; echo "$line"; done; }

Using sed with only one substitution:

sed 's/^\s*\(.*[^ \t]\)\(\s\+\)*$/\1/'
share|improve this answer

Add this:
| sed -r 's/\s*(.*?)\s*$/\1/'

share|improve this answer

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.