Quote:
Originally Posted by
bigvito19
I'm not trying to go that route and produce many lines like that. Lets say I have a python script that could load and run a file over 1GB like the script I have at the top and I have another text file that's 1GB also. Is there a way I could pipe hex the python script to the text file and print the python script against the text file and get combinations but without producing quadrillions of lines. Using the text file as a place holder for lines.
You say you aren't trying to go that route, but that is exactly what your "desired output" and your "re-looping" show in post #1 in this thread.
I don't know what "pipe hex the python script to the text file" means.
I don't know what "print the python script against the text file" means.
By definition a text file contains a sequence of zero or more lines of text. I don't know what "Using the text file as a place holder for lines." means.
Please explain clearly in English what you are trying to do and show us (small) sample input files and the exact output you hope to produce.
Note that if you want all of the combinations of millions of lines (10**9) from one file with millions of lines (10**9) from another file you are talking about quadrillions of combinations (10**9 * 10**9 = 10**18) (i.e., quadrillions of lines of output).