As noted by others, it's input/output redirection.
Here's an example program that would copy the standard input to the standard output, in your example copy the contents from inputValues to outputFile. Implement whatever logic you want in the program.
#include <unistd.h>
#include <iostream>
using std::cin;
using std::cout;
using std::endl;
using std::cerr;
#include <string>
using std::string;
int main(int argc, char** argv) {
string str;
// If cin is a terminal, print program usage
if (isatty(fileno(stdin))) {
cerr << "Usage: " << argv[0] << " < inputValues > outputFile" << endl;
return 1;
}
while( getline(cin, str) ) // As noted by Seth Carnegie, could also use cin >> str;
cout << str << endl;
return 0;
}
Note: this is quick and dirty code, which expects a well behaved file as input. A more detailed error checking could be added.
./compiledprog.x < inputValuesthe shell automatically readsinputValuesand puts it in thestdinof your program. If you do> outputFileit automatically redirects thestdoutof your program tooutputFile. You don't have to do anything in your program. Am I misunderstanding something? – Seth Carnegie Jan 26 at 23:56cin >> stuff– Seth Carnegie Jan 27 at 0:00