mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 11:37:01 +00:00
13 lines
255 B
C#
13 lines
255 B
C#
using System;
|
|
|
|
namespace CMLeonOS.Commands.FileSystem
|
|
{
|
|
public static class PwdCommand
|
|
{
|
|
public static void ProcessPwd(CMLeonOS.FileSystem fileSystem)
|
|
{
|
|
Console.WriteLine(fileSystem.CurrentDirectory);
|
|
}
|
|
}
|
|
}
|