Skip to content

Instantly share code, notes, and snippets.

@fitorec
Created August 25, 2010 13:03
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save fitorec/549457 to your computer and use it in GitHub Desktop.
Descarga los videos tutoriales del cakePHP
#!/bin/bash
#descarga los videos tutoriales del cakePHP
#los cuales los puedes ver desde:
#http://cakephp.org/screencasts/
for i in {1..7}
do
wget -O - http://cakephp.org/screencasts/view/$i | grep -E -o 'http.*.mov' | xargs wget
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment