shell 如何使用Sed添加特殊字符?

wvyml7n5  于 2022-11-16  发布在  Shell
关注(0)|答案(2)|浏览(161)

如何使用Sed添加特殊字符?
脚本 shell :挑战是:
我有一个大文件xx.html:
... ... ...
我问题是如何使用sed命令插入以下行:安全令牌= ''函数getipInfo()
到xx.html文件之前

</body>  line

I try to much scinario , alwase there is issue in php charectar 

sed -i '102i secure_token = \'\<\?php \e\cho file_get_contents\(\"token.txt\"\); \?\>\'\n
   function getipInfo()' xx.html
7nbnzgx9

7nbnzgx91#

如何插入

secure_token = '<?php echo file_get_contents("token.txt"); ?>'    function getipInfo()

到文件中

nkoocmlb

nkoocmlb2#

如果要在</body>之前插入此行:

sed -i '/^<\/body>/i  secure_token = \x27<?php echo file_get_contents("token\.txt"); ?>\x27    function getipInfo()' xx.html

相关问题