We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Process
User can use quote " to indicate single arg that contains space .
"
Given: User type echo "hello world" When: Press Enter Then: Display hello world without quote syntax.
echo "hello world"
hello world
Given: User type echo 'hello world' When: Press Enter Then: Display hello world without quote syntax.
echo 'hello world'
Given: User type echo "hello world" 'hi ni' When: Press Enter Then: Display hello world hi ni without quote syntax.
echo "hello world" 'hi ni'
hello world hi ni
Given: User type echo hello world When: Press Enter Then: Display hello world without quote syntax.
echo hello world
The text was updated successfully, but these errors were encountered:
superxcgm
No branches or pull requests
Epic
Process
Description
User can use quote
.
"
to indicate single arg that contains spaceAC
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.The text was updated successfully, but these errors were encountered: