在以下 DOS 命令中使用按位或
我使用以下代码行同时执行两个命令:
C:\Users\Me\CLAP.txt | %SystemRoot%\explorer.exe F:\Software
不禁想知道如何使用按位或来执行上述操作。
C:\Users\Me\CLAP.txt && %SystemRoot%\explorer.exe F:\Software
似乎也工作得很好。
I use the following line of code to execute two commands simultaneously:
C:\Users\Me\CLAP.txt | %SystemRoot%\explorer.exe F:\Software
Can't help but wonder how the bitwise OR is used to perform the above.
C:\Users\Me\CLAP.txt && %SystemRoot%\explorer.exe F:\Software
seems to work fine too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在此背景下,|是管道符号,而不是按位或。第一个命令的输出被发送到下一个命令的输入。
In this context, the | is the pipe symbol, not a bitwise or. The output of the first command is sent to the input of the next command.