summaryrefslogtreecommitdiff
path: root/shell/bin/help.php
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2011-11-27 11:23:55 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2011-11-27 11:23:55 -0500
commitfb0380f48203a11584773f3db335eaadd9cc6fdf (patch)
tree98f7eb36ed8a3ec99c1cba5c9c0742af8931783b /shell/bin/help.php
parent3d6790614bb0dc776e02a95835e5c274263d1d1a (diff)
This zip file was identified as ltshell-3.5.zip
Diffstat (limited to 'shell/bin/help.php')
-rw-r--r--shell/bin/help.php18
1 files changed, 10 insertions, 8 deletions
diff --git a/shell/bin/help.php b/shell/bin/help.php
index 95d2641..186c7ea 100644
--- a/shell/bin/help.php
+++ b/shell/bin/help.php
@@ -1,12 +1,14 @@
<?php
-function main($args, $env) {
- $commands = array();
- foreach (explode(';',$env['PATH']) as $dir) {
- $commands = array_merge($commands,glob($dir.'/*.php'));
+class p_help extends prog {
+ public static function main($args, $env) {
+ $commands = array();
+ foreach (explode(';',$env['PATH']) as $dir) {
+ $commands = array_merge($commands,glob($dir.'/*.php'));
+ }
+ foreach ($commands as $command) {
+ echo preg_replace('@.*/([^/]*)\.php$@',"\$1\n",$command);
+ }
+ return 0;
}
- foreach ($commands as $command) {
- echo preg_replace('@.*/([^/]*)\.php$@',"\$1\n",$command);
- }
- return 0;
}