Open AlexisTM opened 3 days ago
Expected behavior
The search term doens't need to be quoted, even using wildcard in zsh
I think this is just how ZSH works. There's nothing Pixi or any command line application can do to stop shells from expanding wild card glob characters. The user must use the correct syntax for whichever shell they choose to use. Bash works the same way (see below, but in this case Bash has expanded the search term nt*, and found it matches some files in the particular directory ).
MINGW64 ~
$ python -c "import sys; print(sys.argv[1:])" nt*
['ntuser.dat.LOG1', 'ntuser.dat.LOG2', 'ntuser.ini']
Checks
[x] I have checked that this issue has not already been reported.
[x] I have confirmed this bug exists on the latest version of pixi, using
pixi --version
.Reproducible example
Issue description
Using zsh adds the need to use double quotes when using the wildcard in the command line
Expected behavior
The search term doens't need to be quoted, even using wildcard in zsh