轻松赚钱 - 使用间接而不是文件将字符串写入命令

时间:2016-07-27 15:43:13

标签: windows console-application command-prompt

我知道我可以使用

C:\> somecommand.exe < somefile.txt

将somefile.txt的内容发送到指定的命令,但是如果发送文件,我想发送一个预先打包的字符串,如:

C:\> somecommand.exe < "this is a test"

我已经尝试过了,还有:

C:\> somecommand.exe < echo "this is a test"

没有运气。

此外,如果您有一个最有用的Linux / Mac示例。

1 个答案:

答案 0 :(得分:3)

您可以将pipe |echo结合使用,如下所示:

C:\> echo this is a test | somecommand.exe

我删除了引号,因为它们也会被传递给命令。