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":