00001 <?php 00002 00003 require_once( "commandLine.inc" ); 00004 require_once( "refreshLinks.inc" ); 00005 00006 error_reporting( E_ALL & (~E_NOTICE) ); 00007 00008 00009 if ($argv[2]) { 00010 $start = (int)$argv[2]; 00011 } else { 00012 $start = 1; 00013 } 00014 00015 refreshLinks( $start ); 00016 00017 exit(); 00018 00019 ?>