mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 15:30:27 +00:00
14 lines
279 B
C#
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);
|
|
}
|
|
}
|
|
}
|