[BACK]Return to regen.sh CVS log [TXT][DIR] Up to [local] / openbsd / OpenBSDTorrents

Diff for /openbsd/OpenBSDTorrents/regen.sh between version 1.2 and 1.4

version 1.2, 2005/03/25 02:21:44 version 1.4, 2005/03/28 23:48:44
Line 1 
Line 1 
 #!/bin/sh  #!/bin/sh
   #$Id$
   
 MakeTorrents.pl $@  BASEDIR=/home/OpenBSDTorrents
 CurrentTorrents.pl  
 lftp -f lftp.script  cd ${BASEDIR}
 ServerTorrents.pl  
   if [[ $1 != skip ]]; then
           echo ${BASEDIR}/MakeTorrents.pl $*
           ${BASEDIR}/MakeTorrents.pl $*
   fi
   
   echo ${BASEDIR}/CurrentTorrents.pl
   ${BASEDIR}/CurrentTorrents.pl
   
   if [ $? != 253 ]; then
           echo lftp -f ${BASEDIR}/lftp.script
           lftp -f ${BASEDIR}/lftp.script
   
           echo ${BASEDIR}/ServerTorrents.pl
           ${BASEDIR}/ServerTorrents.pl
   fi

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.4

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>