Naji-k / minishell

1 stars 0 forks source link

Fixed error with quotations + norminette #94

Closed srondss closed 1 year ago

srondss commented 1 year ago

Cleaned up many functions that were too long. Still a few need to be fixed but code is much cleaner now. Fixed errors that were happening with expansions and quotations. Stuff like echo "$USER'"'$USER"' which the code did not support. Also added support for $$ so this expands to "1234" now and correctly handles echo $$$$ or $$USER for example.