I have 6000 lines,with one per number float.
My code
awk '5.400000e+03 {print $0}' base.txt
Only prints numbers
5.400000e+03
5.400000e+03
5.400000e+03
5.400000e+03
5.400000e+03
5.400000e+03
5.400000e+03
5.400000e+03
5.400000e+03
5.400000e+03
5.400000e+03
5.400000e+03
I have changed to
awk '{if($0=="5.400000e+03 ") print NR}' base.txt
but then got nothing! What should I try?