#!/bin/bash

# index of the content on http://www.youtube.com

for file in *.jpg
do
    file=`echo $file | sed 's#.jpg##'`
    comment=`tail -n 1 ./$file`
    echo "$file $comment"
done
