sophiakoulen / minishell

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

Command "cd" does nothing #89

Closed maxstocklin closed 1 year ago

sophiakoulen commented 1 year ago

This is how bash behaves:

bash-3.2$ echo $HOME
/Users/skoulen
bash-3.2$ unset HOME
bash-3.2$ echo $HOME

bash-3.2$ cd
bash: cd: HOME not set
bash-3.2$ 

Bash looks at the $HOME variable.