Hi all,
I try to use a xmltv downloadable file on a Synology NAS.I created a bash script containing the following:
Then I installed in / usr / bin / on my NAS.#!/bin/bash^M if [ "$1" = "--version" ] ; then^M echo "XMLTV module version 0.5.57" ^M echo "This is tv_grab_kazer version 0.1" ^M exit^M fi^M ^M if [ "$1" = "--description" ] ; then^M echo "France Kazer" ^M exit^M fi^M ^M if [ "$1" = "--capabilities" ] ; then^M echo "France Kazer" ^M exit^M fi^M ^M wget -q "http://kazer.org/tvguide.zip?u=myauthkey" -O /tmp/xmltv.zip^M unzip -p /tmp/xmltv.zip^M rm /tmp/xmltv.zip
However this does not work, in internal grabber my script does not appear ...
How to solve problem?
Thank you for your help.