Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
541 views
in Technique[技术] by (71.8m points)

awk - Adding brackets after paricular string

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

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

1 Answer

0 votes
by (71.8m points)

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)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...