aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Engine/Terminal/Commands
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.Engine/Terminal/Commands')
-rw-r--r--ShiftOS.Engine/Terminal/Commands/Hello.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/ShiftOS.Engine/Terminal/Commands/Hello.cs b/ShiftOS.Engine/Terminal/Commands/Hello.cs
new file mode 100644
index 0000000..531bd1f
--- /dev/null
+++ b/ShiftOS.Engine/Terminal/Commands/Hello.cs
@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ShiftOS.Engine.Terminal.Commands
+{
+ public class Hello : TerminalCommand
+ {
+ public override string GetName()
+ {
+ return "Hello";
+ }
+
+ public override string Run(params string[] parameters)
+ {
+ return "Oh, HELLO, " + String.Join(" ", parameters);
+ }
+ }
+}