我是shell脚本新手。我正在寻找一个帮助我达到以下要求的脚本:
我使用sed命令尝试了几个选项,但未能在sed命令中插入其他linux命令。
#sed -i '15i 'hostname'' test.html
#sed -i '15i "`hostname`"' test.html
#sed -i '15i "hostname"' test.html
#sed -i '15i `hostname`' test.html --> These options i tried but no luck.
请帮忙
答案 0 :(得分:3)
你应该在shell中使用它
sed -i "15i `hostname`" test.html
“”将评估文本内部,``将执行文本作为脚本并粘贴其输出