Hello, I have a perl script that seems to be running too slow and I was told than awk could possible speed up 2M+ lines of parsing. The output I'm going through looks as follows:
07:07:05.048 I: QFEED: S=BOL P=44.25 B=23.5 A=15.43 SZ=4200x1500 L=0 D=0(42) CD=0 N=1
What I need to do is find out if the value of A is less than the value of B, if So, print the line. But it's doing it on about 2-4M lines of code. I know k-shell is only capable of doing integers, so I thought I would try awk. Any ideas?
07:07:05.048 I: QFEED: S=BOL P=44.25 B=23.5 A=15.43 SZ=4200x1500 L=0 D=0(42) CD=0 N=1
What I need to do is find out if the value of A is less than the value of B, if So, print the line. But it's doing it on about 2-4M lines of code. I know k-shell is only capable of doing integers, so I thought I would try awk. Any ideas?