I am using REX to remove as much unnecessary data as possible. Is the url a needed part of the channel lineup??
I've tried using (url)(/url) to remove it, with no luck. Thanks for you time.
(channel id="retroplex.us")
(display-name lang="en")Retro Plex (USA)(/display-name)
(icon src="http://www.webgrabplus.com/icon" /)
(url)http://www.tvpassport.com(/url)
(/channel)
Sed command below removes the URLs from the xml guides.
sed -i '/<
url
>/,/ANYCHAR<\/url>/d' /var/www/guide.xml
This method replaces the url with your own.
xmlstarlet ed -L -u "//channel/url" -v "http://your-address" guide.xml