Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] Re: New Astra channels.



Matthias Mueller wrote:
...
vcr@video:/videoconfig$ cat channels.conf | awk -F ':' ' { print $10 } ' |
sort -u | wc -l
    418
vcr@video:/videoconfig$ cat channels.conf | awk -F ':' ' { print $10 } ' |
wc -l
    452
That only suggest that there is more than one channel
with the same service ID in your channels.conf (unless
you have 34 group delimiters, which the above command
lines also count as "same service ID").

The correct command lines would be

grep -v ^: channels.conf | cut -d: -f10 | sort -u | wc -l
grep -v ^: channels.conf | cut -d: -f10 | wc -l

What I would like to know is: are there really two channels
with the same service ID that both broadcast at the same
time, but have different content.

Carsten.



--
Info:
To unsubscribe send a mail to listar@linuxtv.org with "unsubscribe vdr" as subject.



Home | Main Index | Thread Index