Files
erythros/System/Shell/Commands/pwd.HC

7 lines
155 B
HolyC
Raw Normal View History

2025-03-25 07:32:23 -04:00
I64 @shell_cmd_pwd(@shell* sh, I64 argc, U8** argv)
{
U8 buf[512];
StrPrint(&buf, "%s\n", &sh->cwd);
Stdio.WriteLine(sh, &buf);
return 0;
}