diff options
author | Stig Bakken <ssb@php.net> | 2002-05-21 01:38:50 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2002-05-21 01:38:50 +0000 |
commit | dd6b25cfcbeeedb8969cd10add9cf68787889ef1 (patch) | |
tree | 3307ea0efe2fe9f0b17913294aca793a2a5dc4d3 /pear/PEAR/Command/Registry.php | |
parent | 7ecfacedad5ecfff8a50cdd9dd598d74f05c937f (diff) | |
download | php-git-dd6b25cfcbeeedb8969cd10add9cf68787889ef1.tar.gz |
* added more shortcuts
Diffstat (limited to 'pear/PEAR/Command/Registry.php')
-rw-r--r-- | pear/PEAR/Command/Registry.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pear/PEAR/Command/Registry.php b/pear/PEAR/Command/Registry.php index 58f74cdfc1..d85be37479 100644 --- a/pear/PEAR/Command/Registry.php +++ b/pear/PEAR/Command/Registry.php @@ -29,6 +29,7 @@ class PEAR_Command_Registry extends PEAR_Command_Common 'list' => array( 'summary' => 'List Installed Packages', 'function' => 'doList', + 'shortcut' => 'l', 'options' => array(), 'doc' => '[package] If invoked without parameters, this command lists the PEAR packages @@ -38,8 +39,8 @@ lists the files in that package. ), 'shell-test' => array( 'summary' => 'Shell Script Test', - 'shortcut' => 'stest', 'function' => 'doShellTest', + 'shortcut' => 'stest', 'options' => array(), 'doc' => '<package> [[relation] version] Tests if a package is installed in the system. Will exit(1) if it is not. |