aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/Terminal/Commands
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.Main/Terminal/Commands')
-rw-r--r--ShiftOS.Main/Terminal/Commands/Hello.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/ShiftOS.Main/Terminal/Commands/Hello.cs b/ShiftOS.Main/Terminal/Commands/Hello.cs
new file mode 100644
index 0000000..a826532
--- /dev/null
+++ b/ShiftOS.Main/Terminal/Commands/Hello.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ShiftOS.Main.Terminal.Commands
+{
+ public class Hello : TerminalCommand
+ {
+ public override string Name { get; } = "Hello";
+ public override string Summary { get; } = "Just an example command.";
+ public override string Usage { get; } = "Hello <NAME>.";
+ public override bool Unlocked { get; set; } = false;
+
+ public override void Run(params string[] parameters)
+ {
+ string name = string.Join(" ", parameters);
+ WriteLine($"Oh, hello, {name}.");
+ }
+ }
+}