tabcmd
tabcmd copied to clipboard
docs: passwords and PATs can need quoting on the command line
If a password or PAT has certain special tokens, they will be interpreted by the command line and not correctly sent to the server.
e.g: the character ^ is an escape character when read by windows cmd. To use this, you must escape it by enclosing in double quotes or with itself. e.g the username tom^harry can be used like this
- --username "tom^harry"
- --username tom^^harry
other values to check: + ;/....
https://ss64.com/nt/syntax-esc.html