00001 <?php 00012 $oldCwd = getcwd(); 00013 00014 $optionsWithArgs = array( "o" ); 00015 require( "commandLine.inc" ); 00016 require( "dumpInterwiki.inc" ); 00017 chdir( $oldCwd ); 00018 00019 # Output 00020 if ( isset( $options['o'] ) ) { 00021 # To database specified with -o 00022 $dbFile = dba_open( $options['o'], "n", "cdb_make" ); 00023 } 00024 00025 getRebuildInterwikiDump(); 00026