我需要转换我的所有网址相对路径
https://www.example.com/image/abc.gif to /image/abc.gif
我尝试过此命令,但不适用于https:\\
部分。如何在此命令中使用https\\
。
grep -rl "http://www.example.com" /root/ | xargs sed -i 's/http://www.example.com//g'
答案 0 :(得分:0)
以下将完成这项工作:
echo "https://www.example.com/image/abc.gif" | sed 's/https:\/\/www\.example\.com//g'
<强>输出强>
/image/abc.gif
答案 1 :(得分:0)
您可以使用正则表达式,-r表示扩展的正则表达式。的?说's'出现0或1次。
echo "http://www.example.com/image/abc.gif" | sed -r 's/https?:\/\/www\.example\.com//g'