/minishell

Minishell

Primary LanguageC

Minishell

#TODO

  • ft_split with spaces as delimeter: splits outside a string
  • for each splittet node you need to check if its a pipe etc. otherwise its a word and "push" as a token

#Steps

  • read input from Terminal (done)
  • parse given commands
  • lexer -> parser -> expander -> executor

#Sources