Files
CMLeonOS/shell/Commands/System/EchoCommand.cs
2026-02-04 22:09:01 +08:00

14 lines
279 B
C#

using System;
namespace CMLeonOS.Commands.System
{
public static class EchoCommand
{
public static void ProcessEcho(string args)
{
var processedArgs = args.Replace("\\n", "\n");
Console.WriteLine(processedArgs);
}
}
}