How to delete n lines at top=2 and bottom=1 using jython which is saved in sample.txt. My filesize might be MB/GB.
sample.txt contains below lines
1,a 2,b 3,c 4,d 5,e 6,f
Expected Output :
3,c 4,d 5,e
How to delete n lines at top=2 and bottom=1 using jython which is saved in sample.txt. My filesize might be MB/GB.
sample.txt contains below lines
1,a 2,b 3,c 4,d 5,e 6,f
Expected Output :
3,c 4,d 5,e