繁体   English   中英

如何使用管道将一个命令的输出重定向到另一个命令的输入?

[英]How do I use a pipe to redirect the output of one command to the input of another?

我有一个程序将文本发送到LED标志。

prismcom.exe

要使用该程序发送“Hello”:

prismcom.exe usb Hello

现在,我希望使用一个名为Temperature的命令程序。

temperature

假设程序给出了计算机的温度。

Your computer is 100 degrees Fahrenheit.

现在,我希望将温度输出写入prismcom.exe:

temperature | prismcom.exe usb

这似乎不起作用。

是的,我已经找了20多分钟的解决方案了。 在所有情况下,它们都是kludges / hacks或Windows命令行之外的解决方案。

我很欣赏如何将输出从温度传输到prismcom的方向。

谢谢!

编辑:Prismcom有两个论点。 第一个将永远是'usb'。 之后发生的任何事情都会显示在标志上。

试试这个。 将其复制到批处理文件(例如send.bat)中,然后运行send.bat将消息从温度程序发送到prismcom程序。

temperature.exe > msg.txt
set /p msg= < msg.txt
prismcom.exe usb "%msg%"

这应该工作:

for /F "tokens=*" %i in ('temperature') do prismcom.exe usb %i

如果在批处理文件中运行,则需要使用%%i而不仅仅是%i (在两个位置)。

您还可以使用PowerShell在Cmd.exe命令行上运行完全相同的命令。 为简单起见,我会采用这种方法......

C:\>PowerShell -Command "temperature | prismcom.exe usb"

请阅读了解Windows PowerShell管道

您也可以在命令行输入C:\\>PowerShell ,它会立即进入PS C:\\>模式,您可以直接开始编写PS。

不确定您是否正在编写这些程序,但这是一个如何执行此操作的简单示例。

program1.c

#include <stdio.h>
int main (int argc, char * argv[] ) {
    printf("%s", argv[1]); 
    return 0;
}

rgx.cpp

#include <cstdio>
#include <regex>
#include <iostream>
using namespace std;
int main (int argc, char * argv[] ) {
    char input[200];
    fgets(input,200,stdin);
    string s(input)
    smatch m;
    string reg_exp(argv[1]);
    regex e(reg_exp);
    while (regex_search (s,m,e)) {
      for (auto x:m) cout << x << " ";
      cout << endl;
      s = m.suffix().str();
    }
    return 0;
}

然后编译两个然后运行program1.exe "this subject has a submarine as a subsequence" | rgx.exe "\\b(sub)([^ ]*)" program1.exe "this subject has a submarine as a subsequence" | rgx.exe "\\b(sub)([^ ]*)"

| operator只是简单地将program1的printf操作的stdoutstdout流重定向到stdin流,然后它就坐在那里等待rgx.exe接收。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM