Grab a latest (podcast) enclosure

For some podcast feed the following code can be used to filter the latest
enclosure url (probably some mp3 audio file):

On a feed file since the file is already sorted by newest first:

	awk -F '\t' '$8 { print $8; nextfile }'
