sophiakoulen / minishell

A simplified bash-like shell, with pipes, redirections and variable expansion.
3 stars 1 forks source link

should not expand quoted wildcards #109

Closed znichola closed 1 year ago

znichola commented 1 year ago
minishell$ echo "*"
Makefile README.md checklist.md err includes libft minishell notes objs out simplified.c srcs test.sh testing unit-tests unit-tests-builtins
minishell$ 
bash-3.2$ echo "*"
*
bash-3.2$