aboutsummaryrefslogtreecommitdiff
path: root/normalize.php
blob: 836ef78ed627496c6341755c6940ca5418b35abe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
require_once('bibtex.php');

if (2 == $argc) {
    $bibtex = new BibtexParserTeam();
    $bibtex->read_file($argv[1]);
    print $bibtex->export();
} else {
    print_r($argv);
}


?>