标签: dos bit-manipulation
我使用以下代码行同时执行两个命令:
C:\Users\Me\CLAP.txt | %SystemRoot%\explorer.exe F:\Software
不禁想知道如何使用按位OR来执行上述操作。
C:\Users\Me\CLAP.txt && %SystemRoot%\explorer.exe F:\Software
似乎也很好。
答案 0 :(得分:1)
在这种情况下,|是管道符号,而不是按位或。第一个命令的输出被发送到下一个命令的输入。