diff options
Diffstat (limited to 'scripts/epg2taste.sh')
-rwxr-xr-x | scripts/epg2taste.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/scripts/epg2taste.sh b/scripts/epg2taste.sh new file mode 100755 index 0000000..0a6f9e7 --- /dev/null +++ b/scripts/epg2taste.sh @@ -0,0 +1,26 @@ +#!/bin/sh +# +# epg2taste.sh - v.0.1 +# +# add this line to your epgsearchcmds.conf: +# folgende zeile in die epgsearchcmds.conf eintragen: +# +# epg2taste : /usr/local/bin/epg2taste.sh + +# CONFIG START + TASTE_FILE="/etc/vdr/plugins/taste.conf" + +# default taste settings + REGULAR_EXPRESSION=0 # Regular Expression / Regulärer Ausdruck + IGNORE_CASE=0 # Ignore Case / Groß/Kleinschreibung ignorieren +# CONFIG END + +# add taste +echo "${REGULAR_EXPRESSION}:${IGNORE_CASE}:${1}" >> "${TASTE_FILE}" +echo "Done..." + +# jump back +at now <<EOF +perl -l -e "printf \"\n/usr/local/bin/svdrpsend.pl HITK BACK\" x 2" | sh +EOF + |