I am looking for a way to pass a string containg the "*" character to an executable via the command line.
command.exe 3*2
I want to pass the string 3*2. What Windows does instead is search the current directory for files matching the file mask "3*2", and passes any files it found to command.exe
Putting "3*2" between double quotes does not help, still the same problem.
I also tried '3*2' (between single quotes), but then this whole string (including the single quotes) is passed, which is not what I need.
Is there any way to pass the string 3*2 (without any quotes) to the command?