aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Frontend/Commands.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.Frontend/Commands.cs')
-rw-r--r--ShiftOS.Frontend/Commands.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/ShiftOS.Frontend/Commands.cs b/ShiftOS.Frontend/Commands.cs
index 5172d29..cc44dd3 100644
--- a/ShiftOS.Frontend/Commands.cs
+++ b/ShiftOS.Frontend/Commands.cs
@@ -114,6 +114,13 @@ There are no missions available for you to complete. Please check back later for
[TutorialLock]
public static class TerminalCommands
{
+ [Command("echo")]
+ [RequiresArgument("id")]
+ public static void Echo(Dictionary<string, object> args)
+ {
+ Console.WriteLine(args["id"].ToString());
+ }
+
[MetaCommand]
[Command("clear", description = "{DESC_CLEAR}")]
public static bool Clear()