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 want to add () after the equal symbol as shown below.

actual variable in a file : vm_names=vm1 vm2 vm3

i want to change it to: vm_names=(vm1 vm2 vm3)

I tried the below command but its giving different output

sed -i 's/.*/(&)/' file_name

O/p: (vm_names=vm1 vm2 vm3)

question from:https://stackoverflow.com/questions/65920926/adding-brackets-after-paricular-string

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

1 Answer

You can use

sed -i 's/=(.*)/=(1)/' file_name

Details

  • =(.*) - matches = and then captures into Group 1 the rest of the string
  • =(1) - replaces with =( + Group 1 value and a ).

See an online demo:

s='vm_names=vm1 vm2 vm3'
sed 's/=(.*)/=(1)/' <<< "$s"
# => vm_names=(vm1 vm2 vm3)

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