summaryrefslogtreecommitdiff
path: root/pear/scripts/pearcmd-info.php
blob: 99b6b1c7f25584eda7a1c9c2f8ec81334c1c725d (plain)
1
2
3
4
5
6
7
8
9
10
<?php

require_once "PEAR/Common.php";
$parser = new PEAR_Common;
$parser->setErrorHandling(PEAR_ERROR_DIE, "pear info: %s\n");
$info = $parser->infoFromTgzFile($cmdargs[0]);
unset($info['filelist']);
present_array($info);

?>