]> git.llucax.com Git - software/sercom-old.git/blob - src/sc_codegen
Se agrega sqlite a las dependencias en el README.
[software/sercom-old.git] / src / sc_codegen
1 #!/usr/bin/php
2 <?php // vim: set binary noeol et sw=4 sts=4:
3
4 // Incluyo directorio del ejecutable como posible directorio de bibliotecas
5 set_include_path(get_include_path().':'.dirname($argv[0]));
6
7 $LOGLEVEL = ERROR;
8
9 require_once 'T/general.php';
10
11 if ($argc < 2) {
12     echo "Uso: {$argv[0]} padron [clave]\n";
13     exit(1);
14 }
15 $claves = $CONF['general']['claves'];
16 if ($argc > 2) $claves = $argv[2];
17
18 echo T_generar_codigo($argv[1], $claves) . "\n";
19
20 ?>