Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

sed error "Invalid range end"

I run this substitution command on Ubuntu 12.04.

$ sed -e "s/([a-zA-Z0-9.-/\\ :]+)/\1/g"

However, the following error is raised.

sed: -e expression #1, char 27: Invalid range end

I can remember the same expression works on MacOSX.
Can you describe why the command fails?

like image 875
JJD Avatar asked May 19 '13 17:05

JJD


1 Answers

You can solve it in two ways. One of them is to use -r switch to avoid escaping special characters and move - in the range to first or last position and avoid its special meaning, it would be like:

sed -re "s/([a-zA-Z0-9./\\ :-]+)/\1/g"

Otherwise you will need to escape either (, ) and +, like:

sed -e "s/\([a-zA-Z0-9./\\ :-]\+\)/\1/g"
like image 95
Birei Avatar answered Oct 05 '22 03:10

Birei