hello,
I'm trying to see if AQL is usable for some text file review I have to perform.
I have a file, file.txt, containing lines like this :
11:21
bla=1
11:22
jjj
11:44
bla=3
jkjkk
bla=4
Is there any way of getting from AQL what this AWK scripts gets :
cat file.txt |awk '/
0-20-9:
0-60-9/ { cur_x =$0 }/bla/ { print FNR,cur_x, $0 }'
I tried ... but I has been unable to make it work.
Many thanks!
Txemy