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

I assume everyone here is familiar with the adage that all text files should end with a newline. I've known of this "rule" for years but I've always wondered — why?

share|improve this question

13 Answers

up vote 101 down vote accepted

There's at least one hard advantage to this guideline when working on a terminal emulator: when moreing the file on the command line (more displays the file) or catting multiple files (cat = concatenate input files), it results in a correct display. Otherwise the result is something like this:

konrad$ more testfile.txt
Line one
Line twokonrad$

This has tripped me up repeatedly and while it's no big deal in general, it can make working with cat to concatenate files harder.

share|improve this answer
13  
The "cat" argument is actually the strongest: without the terminal newline, text files would need something else stuck in between them to be correctly combined. – Brandon Rhodes Jul 29 '10 at 3:49
32  
@MathiasBynens No, that wouldn’t be helpful. cat behaves the way it is supposed to behave: Sometimes you don’t want to insert a newline between things you concatenate. Those programs do everything right, and files work totally consistently on Unix. Note that it’s not files that need to end in a newline: it’s lines in a file. A complete line on Unix is delimited by a newline character, and that is the indicator that any further content should go on a new line. Which makes sense, doesn’t it? – Konrad Rudolph Sep 5 '12 at 6:45
7  
to add to this, I recently found out that a loop using read would miss the last line if the file doesn't end with a newline. – doubleDown Oct 20 '12 at 7:17
5  
similar to this, it's nice to be able to do echo 'some-new-file' >> .gitignore which won't work if the .gitignore doesn't end with a newline – hdgarrood Jan 18 at 0:06
6  
great point - having lines end in some kind of terminator seems very reasonable come to think of it. I suppose one can think of "newline" not as "newline" but "endofoldline" – Mala Feb 4 at 21:27
show 3 more comments

Each line should be terminated in a newline character, including the last one. Some programs have problems processing the last line of a file if it isn't newline terminated.

GCC warns about it not because it can't process the file, but because it has to as part of the standard.

The C language standard says A source file that is not empty shall end in a new-line character, which shall not be immediately preceded by a backslash character.

Since this is a "shall" clause, we must emit a diagnostic message for a violation of this rule.

This is in section 2.1.1.2 of the ANSI C 1989 standard. Section 5.1.1.2 of the ISO C 1999 standard (and probably also the ISO C 1990 standard).

Reference: The GCC/GNU mail archive.

share|improve this answer

It may be related to the difference between:

  • text file (each line is supposed to end in an end-of-line)
  • binary file (there are no true "lines" to speak of, and the length of the file must be preserved)

If each line does end in with an end-of-line, this avoids, for instance, that concatenating two text files would make the last line of the one run into the first line of the other.

Plus, an editor can check at load whether the file ends in and end-of-line, saves it in its local option 'eol', and uses that when writing the file.

A few years back (2005), many editors (ZDE, Eclipse, Scite, ...) did "forget" that final EOL, which was not very appreciated.
Not only that, but they interpreted that final EOL incorrectly, as 'start a new line', and actually start to display another line as if it already existed.
This was very visible with a 'proper' text file with a well-behaved text editor like vim, and open it in one of the above editors. It displayed an extra line below the real last line of the file. You see something like this:

1 first line
2 middle line
3 last line
4
share|improve this answer

Basically there are many programs which will not process files correctly if they don't get the final EOL EOF.

GCC warns you about this because it's expected as part of the C standard. (section 5.1.1.2 apparently)

http://stackoverflow.com/questions/72271/no-newline-at-end-of-file-compiler-warning

share|improve this answer
1  
GCC isn't incapable of processing the file, it has to give the warning as part of the C standard. – Bill the Lizard Apr 8 '09 at 12:27
Good point, updated with the appropriate section) – altCognito Apr 8 '09 at 12:31

This originates from the very early days when simple terminals were used. The newline char was used to trigger a 'flush' of the transferred data.

Today, the newline char isn't required anymore. Sure, many apps still have problems if the newline isn't there, but I'd consider that a bug in those apps.

If however you have a text file format where you require the newline, you get simple data verification very cheap: if the file ends with a line that has no newline at the end, you know the file is broken. With only one extra byte for each line, you can detect broken files with high accuracy and almost no CPU time.

share|improve this answer

Presumably simply that some parsing code expected it to be there.

I'm not sure I would consider it a "rule", and it certainly isn't something I adhere to religiously. Most sensible code will know how to parse text (including encodings) line-by-line (any choice of line endings), with-or-without a newline on the last line.

Indeed - if you end with a new line: is there (in theory) an empty final line between the EOL and the EOF? One to ponder...

share|improve this answer

Some tools expect this. For example, wc expects this:

$ echo -n "Line not ending in a new line" | wc -l
0
$ echo "Line ending with a new line" | wc -l
1
share|improve this answer

I was always under the impression the rule came from the days when parsing a file without an ending newline was difficult. That is, you would end up writing code where an end of line was defined by the EOL character or EOF. It was just simpler to assume a line ended with EOL.

However I believe the rule is derived from C compilers requiring the newline. And as pointed out on “No newline at end of file” compiler warning, #include will not add a newline.

share|improve this answer

There's also a practical programming issue with files lacking newlines at the end: The read Bash built-in (I don't know about other read implementations) doesn't work as expected:

printf $'foo\nbar' | while read line
do
    echo $line
done

This prints only foo! The reason is that when read encounters the last line, it writes the contents to $line but returns exit code 1 because it reached EOF. This breaks the while loop, so we never reach the echo $line part. If you want to handle this situation, you have to do two code contortions. First, you have to make sure $line is not created in a sub-shell (which happens with the piped version but not with process substitution):

while read line
do
    echo $line
done < <(printf $'foo\nbar')

Then you have to handle $line specially outside the loop:

echo $line
share|improve this answer

I personally like new lines at the end of source code files.

It may have its origin with Linux or all UNIX systems for that matter. I remember there compilation errors (gcc if I'm not mistaken) because source code files did not end with an empty new line. Why was it made this way one is left to wonder.

share|improve this answer

Imagine that the file is being processed while the file is still being generated by another process.

It might have to do with that? A flag that indicates that the file is ready to be processed.

share|improve this answer

IMHO, it's a matter of personal style and opinion.

In olden days, I didn't put that newline. A character saved means more speed through that 14.4K modem.

Later, I put that newline so that it's easier to select the final line using shift+downarrow.

share|improve this answer

Files should not necessarily end with a new line.

For example, my signature files used by my email client don't end with a new line because if they would, my email message would have an empty line at the end and I don't like it.

share|improve this answer
What? Files should not necessarily end with a new line, because you don't like it? Really?! – Andrew Larsson Nov 30 '12 at 17:11
My answer is "Files should not necessarily end with a new line". I just give an example where my file does not end in a new line. There is absolutely nothing that forces you to have a new line at the end of your files. – Oli Feb 1 at 7:23
This question was really about source files, though. I wasn't the one that downvoted you, by the way. – Andrew Larsson Feb 1 at 16:38
1  
No problem. The question (and the tags) doesn't explicitly mention source files. So I assumed it was general text files. – Oli Feb 7 at 15:53

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.