Page 1 of 1

Download Apple movies

Posted: Fri Oct 23, 2009 12:12 pm
by thockman
This is a quick script I created to get the apple ads. I don't have quicktime on the computer that I use for the internet.

Code: Select all

#!/bin/bash
cat index.html | grep movies.apple > mov.txt
sed "s/<a href=\"//g" mov.txt > /tmp/$$ && mv /tmp/$$ mov.txt
sed "s/\">//g" mov.txt > /tmp/$$ && mv /tmp/$$ mov.txt
while read line; do
  echo $line
  wget $line
done < mov.txt