Files
wunix.rhpidfyre.io/packages/web/src/rt/shell/command/builtin/pwd.ts
2025-02-27 22:13:05 -05:00

9 lines
292 B
TypeScript

import { get_working_dir_name_full } from "../../../rfwfs/library";
import type { Args, Term } from "../list";
import stdout from "../../../elements/stdout";
export default function pwd(term: Term, args: Args): boolean {
term.appendChild(stdout(get_working_dir_name_full()))
return true
}