简体   繁体   中英

Search and Replace SED Linux

I need to convert my all url relative path

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

i tried this command but not worked for https:\\\\ section . How can i use https\\\\ in this command .

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

The following will do the job:

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

OUTPUT

/image/abc.gif

You can use regular expressions, the -r indicates extended regexes. The ? says 0 or 1 occurrence of 's'.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM