Alicia-bites / minishell

This project is about creating a simple shell.
1 stars 0 forks source link

#10 Expansion issue when included inside double quote and single quote #10

Closed BarrierAntho closed 2 years ago

BarrierAntho commented 2 years ago

CASES: echo $USER '$USER' "'$USER'"

ACTUAL RESULT: the expansion is empty abarrier '$USER' ''

EXPECTED RESULT: the expansion should be present abarrier '$USER' 'abarrier'