Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a very long file which I want to print but skipping the first 1e6 lines for example. I look into the cat man page but I did not see nay option to do this. I am looking for a command to do this or a simple bash program. I know how to do it using a program in C but I want to do it using the common commands. Any way to do it? Thanks a lot in advance..

share|improve this question

10 Answers

up vote 103 down vote accepted

you need tail.

$ tail great-big-file.log
< Last 10 lines of great-big-file.log >

if you really need to SKIP a particular number of lines, use

$ tail -n+<First line to Print> <filename>
< filename, excluding first so many lines. >

That is, if you want to skip N lines, you start printing line N+1,

If you want to just see the last so many lines, omit the "+":

$ tail -n<Lines to show> <filename>
< last so many lines of file. >
share|improve this answer
This will print the LAST 1000000 lines, which isn't what you're asking about. – Eddie Mar 3 '09 at 2:29
6  
Or "tail --lines=+<LinesToSkip> ..." for the readable-commands crowd :-) – paxdiablo Mar 3 '09 at 2:34
@Eddie: Saw that almost as soon as i clicked the button. Had to use man to sort it out. – TokenMacGuy Mar 3 '09 at 2:39
3  
in centos 5.6 tail -n +1 shows the whole file and tail -n +2 skips first line. strange. The same for tail -c +<num>. – NickSoft Sep 1 '11 at 10:23
7  
Actually this answer is wrong. The right command is tail -n +<start number> or tail -n +<lines to skip + 1>. So if you want to skip the first line: tail -n +2 file.txt – NickSoft Sep 1 '11 at 10:41
show 3 more comments

If you have GNU tail available on your system, you can do the following:

$ tail -n +1000000 huge-file.log

It's the + character that does what you want.

share|improve this answer
4  
Strictly speaking, it should be +1000001, because the argument is the 1-based line index from which output should start. In other words: to skip N lines, specify +(N+1). – mklement Jun 8 '12 at 21:13

This shell script works fine for me:

#!/bin/bash
awk -v initial_line=$1 -v end_line=$2 '{
    if (NR >= initial_line && NR <= end_line) 
    print $0
}' $3

Used with this sample file (file.txt):

one
two
three
four
five
six

The command (it will extract from second to fourth line in the file):

edu@debian5:~$./script.sh 2 4 file.txt

Output of this command:

two
three
four

Of course, you can improve it, for example by testing that all argument values are the expected :-)

share|improve this answer
1  
++ for using awk, which is oh so marginally more portable than tail – guns Mar 31 '09 at 13:42

Just to propose a sed alternative. :) To skip first one million lines, try |sed '1,1000000d'.

Example:

$ perl -wle 'print for (1..1_000_005)'|sed '1,1000000d'
1000001
1000002
1000003
1000004
1000005
share|improve this answer

You can do this using the head and tail commands:

head -n <num> | tail -n <lines to print>

where num is 1e6 + the number of lines you want to print.

share|improve this answer
1  
Not the most efficient answer since you'd need to do a "wc -l" on the file to get a line count, followed by an addition to add the million :-). You can do it with just "tail". – paxdiablo Mar 3 '09 at 2:43
I'm not sure, my understanding was that 1e6 would be known at the time of calling. Counting backwards isn't the fastest though. – Dana the Sane Mar 3 '09 at 3:11

Easiest way I found to remove the first line of a file:

cat file | sed 1d

share|improve this answer
cat < File > | awk '{if(NR > 6) print $0}'
share|improve this answer

A less verbose version with AWK:

awk 'NR >= 10' myfile.txt
share|improve this answer

I needed to do the same and found this thread.

I tried "tail -n +, but it just printed everything.

The more +lines worked nicely on the prompt, but it turned out it behaved totally different when run in headless mode (cronjob).

I finally wrote this myself:

skip=5
FILE="/tmp/filetoprint"
tail -n$((`cat "${FILE}" | wc -l` - skip)) "${FILE}"
share|improve this answer
That deserves at least a Useless Use of Cat Award – pihentagy Mar 8 '12 at 13:07

If you want to see first 10 line you can use sed as below:

sed -n '1,10 p' myFile.txt

or if you want to see lines from 20 to 30 you can use:

sed -n '20,30 p' myFile.txt
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.