I have data in some text file which has let\'s say 10000 rows and 2 columns. I know that I can plot it easily by plot \"filename.txt\" using 1:2 with lines . Wh
plot \"filename.txt\" using 1:2 with lines
Simpler:
plot "<(sed -n '1000,2000p' filename.txt)" using 1:2 with lines