From d5a47f546f51010d81ed46d2222f1b8f4509ed3e Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 2 Aug 2017 08:14:22 -0400 Subject: [PATCH] uhhhhhhhh... --- ShiftOS.Frontend/Commands.cs | 7 +++++++ 1 file changed, 7 insertions(+) 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 args) + { + Console.WriteLine(args["id"].ToString()); + } + [MetaCommand] [Command("clear", description = "{DESC_CLEAR}")] public static bool Clear()