]> git.llucax.com Git - software/sercom-old.git/blob - src/sc_codegen
sc_codegen acepta un directorio de bibliotecas.
[software/sercom-old.git] / src / sc_codegen
1 #!/usr/bin/php
2 <?php // vim: set binary noeol et sw=4 sts=4:
3
4 // Si me pasan un directorio de bibliotecas, lo uso.
5 if (@$argv[1]) {
6     set_include_path(get_include_path().':'.$argv[1]);
7 }
8
9 $LOGLEVEL = ERROR;
10
11 require_once 'T/general.php';
12
13 if ($argc < 2) {
14     echo "Uso: {$argv[0]} padron [clave]\n";
15     exit(1);
16 }
17 $claves = $CONF['general']['claves'];
18 if ($argc > 2) $claves = $argv[2];
19
20 echo T_generar_codigo($argv[1], $claves) . "\n";
21
22 ?>