Closed superxcgm closed 3 years ago
redirection bug
single Pipe line progress
Unresolved problem
redirection bug
single Pipe line progress
mutil Pipe line progress
Given: User type some_command (For example: echo ab) When: User hit Then: ✅Print ab on console.
Given: User type some_command | another_command (For example:ls -l | grep 'hello' ) When: User hit Then: ✅Should use output of first command as input of second command.
Epic
Process
Description
For good user experience, user can add chain commands using pipeline
AC
Given: User type
Then: Print ab on console.
some_command
(For example: echo ab) When: User hitGiven: User type
Then: Should use output of first command as input of second command.
some_command | another_command
(For example:ls -l | grep 'hello'
) When: User hitOut of Scope
Support of multi pipe, like
command1 | command2 | command3