kose-yusuke / minishell

1 stars 0 forks source link

`exit`のエラー処理 #114

Open skitheom opened 1 month ago

skitheom commented 1 month ago

exit のエラー処理についてbashと一致しない箇所がありました

bash

bash-3.2$ exit 666 666
exit
bash: exit: too many arguments

minishell

minishell$ exit 666 666
minishell: exit: too many arguments
skitheom commented 1 month ago

エラー処理と関係なく、exit の文字を出力する文をまちがえて消してしまったみたいです