我正在使用一个程序,它使用type
命令将文件的内容通过管道传输到另一个程序,如下所示:
type test.txt | (another program)
这个命令在我的主程序中是硬编码的。问题是该type
命令存在正斜杠问题:
E:\babak\git\bin>type e:/babak/git/bin/test.txt
The syntax of the command is incorrect.
有没有办法type
用一个名为 的自定义应用程序覆盖 cmd 内部type
,它支持正斜杠,所以如果有人type
在 cmd 中调用,则调用自定义type
应用程序?