Skip to content

Instantly share code, notes, and snippets.

@mario21ic
Created July 3, 2013 21:53
Show Gist options
  • Save mario21ic/5923184 to your computer and use it in GitHub Desktop.
Save mario21ic/5923184 to your computer and use it in GitHub Desktop.
Downloading slideshare
###############################
#!/bin/bash
contador=1
paginas=186
echo "Iniciando..."
while [ $contador -le 186 ]; do
url=http://image.slidesharecdn.com/presentacion-121015090034-phpapp02/95/slide-$contador-1024.jpg
wget $url;
echo "url:" $url
let contador=$contador+1
sleep 5
done
echo "Finalizando..."
###############################
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment