oshiro17 / miniminishell

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pwd, cd ができなくなる

oshiro17 opened this issue · comments

% ./minishell
ms > mkdir tmp
ms > cd tmp
ms > rm -rf ../tmp/
ms > pwd
ms > cd
./minishell: runtime error

ms > mkdir tmp
ms > cd tmp/
ms > pwd
/Users/panti/Downloads/minishell/tmp
ms > chmod 000 ../tmp/
ms > pwd

bash-3.2$ mkdir temp
bash-3.2$ cd temp
bash-3.2$ rm -rf ../temp
bash-3.2$ unset PWD
bash-3.2$ echo $PWD

bash-3.2$ pwd
/Users/panti/Desktop/temp
bash-3.2$