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()