2005/12/30

Script: Megatokyoget Release Candidate



[dalfa@MDV2006 ~]$ cat tmp/betascript/megatokyo-rc.sh

# script para bajar strip megatokyo.com
# :-D por DRaKeDaLFa / TheDalfa
# MegatokyoGet (RC)
#!/bin/sh

n1=0
n2=0
n3=0
n4=0
# Variables del nombre de archivo
time=$(date +%T)
#date +%T = hh:mm:ss

mkdir ~/megatokyo &> /dev/null ;
cd ~/megatokyo;
echo -e '\n' '\n' [ Fecha de ejecucion: $time ] '\n' >> megatokyo.log

while [ $n1 -lt 9 ]
clear
do echo Comic que se descarga - [ $n4$n3$n2$n1.gif ] Conteo de archivos faltantes - [ $notfound ]
notfound=$(grep --count "Not Found" ~/megatokyo/megatokyo.log)
# cuenta los archivos que no existen en megatokyo
if test $notfound -gt 50
then sleep 2
echo conteo de archivos perdidos llego al tope
exit
fi

wget -a megatokyo.log -nc http://www.megatokyo.com/strips/$n4$n3$n2$n1.gif;

n1=$(expr $n1 + 1)
if test $n1 = 10
then n1=0
# sleep 1
if test $n1 = 0
then n2=$(expr $n2 + 1)
# sleep 1
if test $n2 = 10
then n2=0
if test $n2 = 0
then n3=$(expr $n3 + 1)
# sleep 1
if test $n3 = 10
then n3=0
if test $n3 = 0
then n4=$(expr $n4 + 1)
if test $n4 = 10
then n4=0
fi
fi
fi
fi
fi
fi
fi

done
exit

No hay comentarios: