7
0
mirror of https://github.com/marado/RNID.git synced 2025-04-23 17:04:06 +00:00
rnid/scripts/54-rtp.sh
2025-03-29 17:18:57 +00:00

14 lines
660 B
Bash
Executable File

#!/bin/bash
if [ "$(wget https://www.rtp.pt/play/direto/rtp1 -o /dev/null -O - |grep -c 'drm: true')" -ne "1" ]; then
echo "RTP: não encontrei DRM no stream da RTP1, incumprimento pode já não existir";
else
echo "RTP: Incumprimento mantém-se, a actualizar o README (faça um git diff, valide, e commit!)";
while IFS='' read -r line || [[ -n "$line" ]]; do
test "$(echo "$line"|grep -v -c "rtp")" -eq "1" \
&& echo "$line" \
|| (h=$(echo "$line"|cut -d\| -f1-4); t=$(echo "$line"|cut -d\| -f6-); nc=$(echo "$line"|cut -d\| -f5 | wc -m); printf "%s| %-$((nc-2))s|%s\n" "$h" "$(date +%Y/%m/%d)" "$t");
done < README.md > new
mv new README.md
fi