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

Categories

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

bash - Expand variables in sed

I need use sed into bash script, for add lines after any line numer of script with some pair of values (below work)

sed -i.bak '14isome_text=some_text' file

But I need on script bash (sh) for expand variables (below not work)

sed -i.bak '$number_linei$var1=$var2' $var3
See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

Just use double quotes instead of single quotes. You'll also need to use {} to delimit the number_line variable correctly and escape the , too.

sed -i.bak "${number_line}i\$var1=$var2" $var3

I'd personally prefer to see all of the variables use the {}, ending up with something like:

sed -i.bak "${number_line}i\${var1}=${var2}" ${var3}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...