kose-yusuke / minishell

1 stars 0 forks source link

[Syntax Error] pipeの前後にcmdがないcaseへの対応 #67

Closed skitheom closed 3 months ago

skitheom commented 3 months ago

67 現在のプルリク

テスト結果

 ~/code/minishell/ [fix/syntax-error-pipe-only*] ./minishell
minishell$ |
minishell: syntax error near unexpected token `|'
minishell$ ||
minishell: syntax error near unexpected token `|'
minishell$ |||
minishell: syntax error near unexpected token `|'
minishell$  |
minishell: syntax error near unexpected token `|'
minishell$ cd |
minishell: syntax error near unexpected token `newline'
minishell$ cd ||
minishell: syntax error near unexpected token `|'
minishell$ cd |||
minishell: syntax error near unexpected token `|'
minishell$ | cd
minishell: syntax error near unexpected token `|'
minishell$ || cd
minishell: syntax error near unexpected token `|'
minishell$ ||| cd
minishell: syntax error near unexpected token `|'
minishell$ exit
 ~/code/minishell/ [fix/syntax-error-pipe-only*]

65 一つ前のプルリクでの作業分