Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个现有的程序,我无法修改它。它用于std::cin读取用户的输入。
std::cin
现在我不想每次都输入它,所以我创建了一个这样的文件:
3 2 2 3 4 5 1
如何将此文件用作输入流?我正在使用 OS X。
如果您使用的是 bash(或类似的)shell,并且您的输入在文件中,input.in那么
input.in
myprogram < input.in
将使用 input.in 作为程序的标准输入。