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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I try to use & for an alias in order to execute more than one command e.g.
λ alias ctest=c: & cd c:\test
But get following error
The system cannot find the path specified.
although it's possible to make an entry in config/aliases that also works
The text was updated successfully, but these errors were encountered:
See #632 -- same issue with the shell handling the & before it gets passed to alias.bat. You can use the doskey equivalent $T here:
alias ctest=c: $T cd c:\test
Note that in this case you can also just use the /D option to tell cd to change drives:
alias ctest=cd /D c:\test
Sorry, something went wrong.
No branches or pull requests
I try to use & for an alias in order to execute more than one command
e.g.
But get following error
although it's possible to make an entry in config/aliases that also works
The text was updated successfully, but these errors were encountered: