The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
293 B
18 lines
293 B
6 years ago
|
#include <iostream>
|
||
|
#include <fstream>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
int main(int argc, char *argv[]) {
|
||
|
if(argc < 3) {
|
||
|
cerr << argv[0] << " requires an input and an output file!" << endl;
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
ifstream src(argv[1]);
|
||
|
ofstream dst(argv[2]);
|
||
|
|
||
|
dst << src.rdbuf();
|
||
|
return 0;
|
||
|
}
|