Files
RobustToolbox/Robust.Shared/Console/Commands/EchoCommand.cs
Pieter-Jan Briers c9042f188c Console output fixes.
Make it not assume UTF-8 when it's not.
Try to set the console output to UTF-8 on Windows.
Remove UTF-16 output code cuz who needs it.
2023-04-26 22:51:52 +02:00

12 lines
296 B
C#

namespace Robust.Shared.Console.Commands;
internal sealed class EchoCommand : LocalizedCommands
{
public override string Command => "echo";
public override void Execute(IConsoleShell shell, string argStr, string[] args)
{
shell.WriteLine(string.Join(" ", args));
}
}