dear lazyweb
Dec. 4th, 2008 11:51 pmI want to run a command that will give me the contents of a file, except for the last two lines. I know that tail -2 filename will give me the last two lines of a file, and head -2 filename will give me the first two lines of a file. Now, tail +2 filename will give me contents of a file, starting with line 2. It's not a symmetrical option, but i can at least work with that. However, the head command lacks this elegant mode; otherwise, i would infer that head +3 filename would give me what i want. Is there a simple command that can do what i want? I figure i can implement this in some fugly perl script, but that is not the damn point.
assuming you're using bash.
Date: 2008-12-05 08:08 am (UTC)Re: assuming you're using bash.
Date: 2008-12-05 08:10 am (UTC)Re: assuming you're using bash.
Date: 2008-12-05 08:14 am (UTC)But that makes two passes through the file and forks an unnecessary cut!
Here, still in two passes, but golfed a bit:
And what the hell, here's the fugly perl anyway. One pass, but Perl:
Re: assuming you're using bash.
Date: 2008-12-05 06:37 pm (UTC)Only Fuggly Whiners about solution spaces...