Clipinc.sh
Aus VDR Wiki
Version vom 11. Dezember 2004, 08:46 Uhr von 213.6.77.158 (Diskussion)
#!/bin/sh # # clipinc.sh - v.0.1 # # add this lines to your reccmds.conf: # folgende zeilen in die reccmds.conf eintragen: # # Start clipinc : /usr/local/bin/clipinc.sh -start # Stop clipinc? : /usr/local/bin/clipinc.sh -kill case "${1}" in -start) msg() { echo -e "-----------\n${@}\n-----------" } test -s "${2}/recinfo.conf" || { msg "recinfo.conf not found..." exit 1 } at now <<EOF clipinc.pl "${2}" EOF ;; -kill) killall vdrcut clipinc.pl ;; esac