kose-yusuke / minishell

1 stars 0 forks source link

heredocとexpand機能の統合と改善 #76

Closed skitheom closed 2 months ago

skitheom commented 2 months ago

前回 #71


今回 heredocとexpand機能の統合と改善

概要

クローズされるIssue

関連Issue

実行結果

以下のテストケースで正常に動作することを確認。

minishell$ echo $USER$HOME
north/Users/north

minishell$ cat <<EOF
heredoc> "$USER"
heredoc> EOF
"north"

minishell$ cat <<"E"O'F'
heredoc> test
heredoc> EOF
test

minishell$ cmd
Command not found: cmd
minishell$ echo $? > a | echo $? > b | echo $? > c
minishell$ cat a
127
minishell$ cat b
0
minishell$ cat c
0