#define VERSION "1.0"
+const int buffer_size = 1024;
+
// Yeah, global variables!
-int buffer_size = 1024;
int nb_lines_max = 10000;
char pattern_separator = ';';
int output_to_vt_buffer = 0;
setlocale(LC_ALL, "");
char input_filename[buffer_size], output_filename[buffer_size];
+
strcpy(input_filename, "");
- strcpy(output_filename, "/tmp/selector.out");
+ strcpy(output_filename, "");
int i = 1;
while(i < argc) {
if(temporary_line >= 0 && temporary_line < nb_lines) {
inject_into_tty_buffer(lines[temporary_line]);
}
- } else {
+ }
+
+ if(output_filename[0]) {
ofstream out(output_filename);
if(out.fail()) {
cerr << "Can not open " << output_filename << " for writing." << endl;