Hi ,
I am trying to loop through a text file and I want to ignore the 1st and the last line in the file. HOw can I achive this without using tail and head.
for example
START|
1|RECV1_PLCMM_1_YYYYMMDD_HHMMSS_DATA.TXT|
2|RECV1_PLCMM_2_YYYYMMDD_HHMMSS_DATA.TXT|
3|RECV1_PLCMM_3_YYYYMMDD_HHMMSS_DATA.TXT|
4|RECV1_PLCMM_4_YYYYMMDD_HHMMSS_DATA.TXT|
5|RECV1_PLCMM_5_YYYYMMDD_HHMMSS_DATA.TXT|
END|
I want to ignore START and END in the file.
Could u pls help me with this