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

8 lines
202 B
HolyC
Raw Normal View History

2025-03-25 07:32:23 -04:00
I64 @shell_cmd_open(@shell* sh, I64 argc, U8** argv)
{
if (argc < 2) {
Stdio.WriteLine(sh, "open: path required\n");
return 1;
}
return @systemstarter_open(sh, argc, argv);
}