I'm trying to save a continuing data stream (very large) to a binary file. The data stream is generate with
find . -name "(pattern)" | xargs -L1 awk '{(smth)}' | ./translater
The "translater" is a c code to revive the data flow from the second pipe.
#include <stdio.h>
#include <stdlib.h>
int main() {
float buffer;
FILE *stream;
stream = fopen("output.bin", "wb");
while (scanf("%f", &buffer)==1) {
fwrite(&buffer, 1, sizeof(float), stream);
}
fclose(stream);
return (0);
}
These combination works well, but takes too long (>3hr) to generate a 2GB binary file. Is there anything that I can improve in order to turbo it?
Thanks.
awkfor every input file. How many input files are there? If you give an example of whatpatternand{(smth)}are, then it will be easier for people to help you answer your question. – andrewdotn Feb 6 at 20:06