tkomatsu / minishell

my own shell like bash
MIT License
3 stars 0 forks source link

リダイレクト #146

Closed tkomatsu closed 3 years ago

tkomatsu commented 3 years ago
minishell$ >hoge1>hoge2
minish: hoge2: command not found
minishell$
kefujiwa commented 3 years ago

考えられる原因は、1つ目のリダイレクトで直後のトークンを削除しているため、 2つ目のgreaterトークンがなくなり、2個目のリダイレクト処理が発生していない。

minishell$ >hoge1>hoge2
[ 0], type:greater
[ 1]hoge1, type:greater
[ 2]hoge2, type:word
minish: hoge2: command not found

正常なパターン

minishell$ >hoge >hoge2
[ 0], type:greater
[ 1]hoge, type:word
[ 2], type:greater
[ 3]hoge2, type:word
minishell$
kefujiwa commented 3 years ago

148 にて解決した認識のためクローズします。