#!/bin/sh # # Fetch list of tivo recordings in html format to stdout. # # The ultra secret media access key provided by the tivo box: # mediakey=nnnnnnnnnn # cookies=/tmp/$$cookies.txt curl -s --digest -k -u tivo:$mediakey -c $cookies --cookie "sid=abc" \ 'https://746-0001-902d-ac0b/nowplaying/index.html?Recurse=Yes' rm -f $cookies