简体   繁体   中英

removing first n and last n lines from multiple text files

I have been stuck for some time now

I have two text files, from which I would like to remove the first two and the last three lines.

So far I have

$tail -n +3 text_1.txt text_2.txt | head -n -3

When I enter this into console, I see that text_2.txt indeed comes out with proper format, but text_1.txt still has that last three lines that need to be removed. I presume that head command is not being applied to text_1.txt.

How can I solve this problem?

for i in text_1.txt text_2.txt; do tail -n +3 "$i" |  head -n -3; done

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM