gpt4 book ai didi

windows - 将 cin (c++) 重定向到 cmd 中的多个文件

转载 作者:可可西里 更新时间:2023-11-01 10:55:53 25 4
gpt4 key购买 nike

我一直在寻找它,但我找不到路。基本上我有两个文件:“hello.txt”和“bye.txt”:

你好.txt:

1 2 3 8 8

再见.txt:

9 9 8 1 2

我知道如何重定向 cinhello.txt使用:

a.exe < hello.txt

所以 cin 会收到 "1 2 3 8 8" .但是我怎样才能让它从两个文件中接收信息"1 2 3 8 8 9 9 8 1 2" .我已经尝试复制 < :

a.exe < hello.txt < bye.txt

但是没有用,我也试过这个:

a.exe < hello.txt <& bye.txt

但从我读到的内容来看,它不会起作用(它没有)。有任何想法吗?谢谢

最佳答案

它与 C++ 无关。您可以更改代码并从作为命令行提供的许多文件中读取,或者您首先将所有文件重定向到一个文件中,然后再读取该文件:

type hello.txt > tmp.txt
type bye.txt >> tmp.txt
e.exe < tmp.txt

关于windows - 将 cin (c++) 重定向到 cmd 中的多个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30082040/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com