sophiakoulen / minishell

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

undermatch wildcards! #117

Closed znichola closed 1 year ago

znichola commented 1 year ago
bash-3.2$ touch test.me
bash-3.2$ touch test.me___me
bash-3.2$ echo *.me
test.me
bash-3.2$ echo *me
test.me test.me___me
bash-3.2$