This script below also will only produce only 27 files. I need it to be unlimited (Or at least 100)
BEGIN {
outputFileROOT="rxmop_input"
unknownNUM="999999";
}
FNR == 1 {
if (match(FILENAME, "[0-9]+")
output=outputFileROOT substr(FILENAME, RSTART, RLENGTH);
else
output=outputFileROOT unknownNUM;
}
/(^RXOTX|^RXORX)/ { print >> output; }
I believe this is the last file that will have this issue. I have looked over everything I have.
BEGIN {
outputFileROOT="rxmop_input"
unknownNUM="999999";
}
FNR == 1 {
if (match(FILENAME, "[0-9]+")
output=outputFileROOT substr(FILENAME, RSTART, RLENGTH);
else
output=outputFileROOT unknownNUM;
}
/(^RXOTX|^RXORX)/ { print >> output; }
I believe this is the last file that will have this issue. I have looked over everything I have.