Files
CMLeonOS/shell/Commands/System/EchoCommand.cs

14 lines
279 B
C#
Raw Normal View History

2026-02-04 22:09:01 +08:00
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);
}
}
}