sophiakoulen / minishell

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

wildcard bash matching #110

Closed znichola closed 1 year ago

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

maybe the expr string isn't advanced for one letter? idk