I have a text file that has the following format:
50000
55000
60000
65000
150000
160000
I want to print everything starting 50000 and ending at 60000. What I tried was:
awk "/50000/,/60000/ {print}"
But this also prints the 150000 and 160000. How should I modify this?