From 35af0423a7bd3ce40e2d6153df7eb9061d8a2c25 Mon Sep 17 00:00:00 2001 From: "Tobias P.L Wennberg" Date: Mon, 13 Jan 2025 17:04:15 +0100 Subject: [PATCH] merge flodman --- command/command.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/command/command.go b/command/command.go index 5f7392c..54158b4 100644 --- a/command/command.go +++ b/command/command.go @@ -5,6 +5,7 @@ import ( "bbash/command/cd" "bbash/command/cp" "bbash/command/echo" + "bbash/command/fritiofcommand" "bbash/command/head" "bbash/command/help" "bbash/command/ls" @@ -34,6 +35,8 @@ func Init(env *environment.Env) { func Run_command(in input_parser.Input, env *environment.Env) { switch in.Instruction { + case "fritiofcommand": + fritiofcommand.Fritiof(in, env) case "pwd": pwd.Pwd(in, env) case "echo":