Posted April 29, 2011
I downloaded the script from the xenon link in the first post. It worked fine, but it didn't download additional content, so after a few hours (gasp!), I found it comes down to a single vs. a double quote in this line:
ADDITIONAL_CONTENTS_LIST=`echo "$MYACCOUNT_PAGE" | grep $ADDITIONAL_CONTENTS_LIST_REGEX | cut -f2 -d\"`
Changing the last bit into -d2\'` makes it work fine.
ADDITIONAL_CONTENTS_LIST=`echo "$MYACCOUNT_PAGE" | grep $ADDITIONAL_CONTENTS_LIST_REGEX | cut -f2 -d\"`
Changing the last bit into -d2\'` makes it work fine.