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
For good user experience, user can add some alias to shell and auto replace when execute command.
Given: User type alias When: User hit Then: Print all alias
alias
Given: User type alias ls='ls-G' When: User hit Then: Save alias to shell
alias ls='ls-G'
Given: User already have alias ls='ls -G' saved in our shell When: User type ls and hit Then: Shell execute ls -G
alias ls='ls -G'
ls
ls -G
Given: User already have alias ls='ls -G' and alias ll='ls -lh' saved in our shell When: User type ll and hit Then: Shell execute ls -G -lh
alias ll='ls -lh'
ll
ls -G -lh
The text was updated successfully, but these errors were encountered:
Merge pull request #34 from /issues/28
15d12be
Alias can replace many times
superxcgm
No branches or pull requests
Epic
Process
Description
For good user experience, user can add some alias to shell and auto replace when execute command.
AC
Given: User type
alias
When: User hit
Then: Print all alias
Given: User type
alias ls='ls-G'
When: User hit
Then: Save alias to shell
Given: User already have
alias ls='ls -G'
saved in our shellWhen: User type
ls
and hitThen: Shell execute
ls -G
Given: User already have
alias ls='ls -G'
andalias ll='ls -lh'
saved in our shellWhen: User type
ll
and hitThen: Shell execute
ls -G -lh
The text was updated successfully, but these errors were encountered: