I need to pass a tab character into a program from the command-line on Windows.
eg: grep "foo<TAB>bar" filename
However, cmd.exe's auto-completion gets in the way.
On Unix, you can hit Ctrl-V before the TAB to escape the special function of TAB.
In Powershell, `t is the escaped representation of TAB.
Does anyone know a way to do this for Windows' Command Prompt?