Add piping, Add type builtin, Add command -v builtin

This commit is contained in:
2026-08-23 13:30:22 +03:00
parent 35f5d5777e
commit 621be5a057
15 changed files with 421 additions and 56 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ const std = @import("std");
const types = @import("../types.zig");
pub fn execute(ctx: types.BuiltinCommandContext) !void {
pub fn execute(ctx: types.CommandContext) !void {
const path = if (ctx.argv.len >= 2)
ctx.argv[1]
else