summaryrefslogtreecommitdiff
path: root/shell/bin/echo.php
diff options
context:
space:
mode:
Diffstat (limited to 'shell/bin/echo.php')
-rw-r--r--shell/bin/echo.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/shell/bin/echo.php b/shell/bin/echo.php
new file mode 100644
index 0000000..82487b0
--- /dev/null
+++ b/shell/bin/echo.php
@@ -0,0 +1,6 @@
+<?php
+function main($args) {
+ array_shift($args);
+ echo implode(' ',$args)."\n";
+ return 0;
+}