Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have this data in file.txt:

1234-abca-dgdsf-kds-2;abc dfsfds 2
123-abcdegfs-sdsd;dsfdsf dfd f
12523-cvjbsvndv-dvd-dvdv;dsfdsfpage

I want to replace the string after "-" and up to ";" with just ";", so that I get:

1234;abc dfsfds 2 
123;dsfdsf dfd f 
12523;dsfdsfpage

I tried with the command:

sed -e "s/-.*;/;" file.txt

But it gives me the following error:

sed command garbled

Why is this happening?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
2.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

sed replacement commands are defined as (source):

's/REGEXP/REPLACEMENT/[FLAGS]'

(substitute) Match the regular-expression against the content of the pattern space. If found, replace matched string with REPLACEMENT.

However, you are saying:

sed "s/-.*;/;"

That is:

sed "s/REGEXP/REPLACEMENT"

And hence missing a "/" at the end of the expression. Just add it to have:

sed "s/-.*;/;/"
#            ^

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...