superxcgm / xcShell

Your own shell
1 stars 1 forks source link

User input support quote to quote strings that contain space #22

Closed superxcgm closed 3 years ago

superxcgm commented 3 years ago

Epic

Process

Description

User can use quote " to indicate single arg that contains space .

AC

Given: User type echo "hello world" When: Press Enter Then: Display hello world without quote syntax.

Given: User type echo 'hello world' When: Press Enter Then: Display hello world without quote syntax.

Given: User type echo "hello world" 'hi ni' When: Press Enter Then: Display hello world hi ni without quote syntax.

Given: User type echo hello world When: Press Enter Then: Display hello world without quote syntax.