lunes, 23 de abril de 2012

¿Te falta algún número de FullCircle?: Usa este script para descargar la revista


Si te gusta la revista FullCircle y quieres descargar algún número que te falte, puedes utilizar el siguiente script.
01#!/bin/bash
02echo -n "What is the issue number of the first Full Circle Magazine to
03download? "
04read firstissue
05 
06echo ""
07echo -n "What is the issue number of the last Full Circle Magazine to
08download? ( > or = the previous number) "
09read lastissue
10 
11cd ~/Desktop  # ~ brings you to the home directory of the user and from
12there I wanted to use my folder 'Desktop'
13 
14for in `seq $firstissue $lastissue`
15    do
16        wget -U Mozilla "http://dl.fullcirclemagazine.org/issue"$a"_en.pdf"
17    done
18 
19echo ""
20echo "Complete!"

No hay comentarios:

Publicar un comentario