What I wanted to do was to cd into the directly named "-1234", this denoted the artifact repo for the super user in WSO2 AS. cd -1234 simple doesn't work as cd tries to interpret "-1" as a command argument. This [2] came out from a google search, to simply put it, there are two approaches possible.
- cd -- -1234
- cd ./-1234
Add a comment