minishell
minishell copied to clipboard
[DECISION] How to handle `env` if there are arguments after it?
Most of the times, the error message is:
bash-5.1$ env abc
env: ‘abc’: No such file or directory
However, if echo follows env, this happens:
bash-5.1$ env echo 1 2 3
1 2 3