unow0517 / 42_minishell

1 stars 0 forks source link

available builtin fns in execution cases VS if statement #8

Open unow0517 opened 4 months ago

unow0517 commented 4 months ago

execution cases: echo, pwd, env, ($expand was right in front of if statements) execution not working : cd, export, history, unset

if : echo, cd, pwd, env, export, history, unknown cmds, unset ($expand was right in front of if statements)

I will keep both for now, and we can sit together and decide what to use. added "command not found" at exit of execution

unow0517 commented 4 months ago

Thaleia will bring builtin functions into 'parsing.c' and those will be run in funtion "execution_cases.c"(in execution.c)