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)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…