gpt4 book ai didi

linux - 搜索和替换 SED Linux

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:30:05 26 4
gpt4 key购买 nike

我需要转换我所有的 url 相对路径

https://www.example.com/image/abc.gif   to  /image/abc.gif  

我试过这个命令,但对 https:\\ section 不起作用。我如何在此命令中使用 https\\

   grep -rl "http://www.example.com" /root/ | xargs sed -i 's/http://www.example.com//g'

最佳答案

以下将完成这项工作:

echo "https://www.example.com/image/abc.gif" | sed 's/https:\/\/www\.example\.com//g'

输出

/image/abc.gif

关于linux - 搜索和替换 SED Linux,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28839519/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com