this command is really very useful but where I can get the source code to see what is going on inside .

thanks .

link|improve this question

feedback

5 Answers

up vote 17 down vote accepted

The tail utility is part of the coreutils on linux.

I've always found FreeBSD to have far clearer source code than the gnu utilities. So here's tail.c in the FreeBSD project:

link|improve this answer
+1 for diversity, even though the original question was about linux utility. – Michael Krelin - hacker Sep 17 '09 at 16:19
feedback

Look here — http://git.savannah.gnu.org/cgit/coreutils.git/tree/src/tail.c

link|improve this answer
To build this, you are also going to need the rest of the coreutils package. – Matt Beldyk Sep 17 '09 at 16:13
Of course. It's easy to travel up the tree starting from there. – Michael Krelin - hacker Sep 17 '09 at 16:16
But it is my understanding that the OP is driven by curiosity not the need of utility which is available out of the box more or less everywhere. – Michael Krelin - hacker Sep 17 '09 at 16:16
feedback

After doing a quick search, this is one of the first things I found.

link|improve this answer
1  
That is a horribly old piece of software that bundles an equally outdated Busybox. Modern versions including bugfixes are available at busybox.net/downloads. – daxim Sep 10 '10 at 10:34
feedback

Poke around the uclinux site. Since they distributed the software, they are required to make the source available one way or another.

Or, you could read man fseek and guess at how it might be done.

NB-- See William's comments below, there are cases when you can't use seek.

link|improve this answer
tail does not use fseek. If it did, it would not work on a stream (eg 'grep pat file | tail') – William Pursell Sep 17 '09 at 16:13
Hmm, never thought of that. Thanks. I have to think that it would still be faster when working with seekable input. – dmckee Sep 17 '09 at 16:18
1  
This is not exactly true. tail doesn't always use seek ;-) – Michael Krelin - hacker Sep 17 '09 at 16:20
feedback

You might find it an interesting exercise to write your own. The vast majority of the Unix command-line tools are a page or so of fairly straightforward C code.

To just look at the code, the GNU CoreUtils sources are easily found on gnu.org or your favorite Linux mirror site.

link|improve this answer
I wrote a fairly complete set of tools for MS-DOS back when Linux was in its infancy. And while many are certainly straight forward, I would hesitate to say "a page' and wouldn't say a "vast majority". find and ls for example, were considerably more complex. – NVRAM Sep 17 '09 at 16:26
The core of most of the tools generally is short. But the argument processing and corner case handling can be a pain. – dmckee Sep 17 '09 at 16:26
Yes, I probably should have said "many" tools are short & simple. GNU tail has a lot of options, so it probably doesn't fit into the "simple" category. The version of tail that most people would use (i.e. tail -xxx file, or tail -f file) would be pretty simple. – Mark Bessey Sep 17 '09 at 19:04
feedback

Your Answer

 
or
required, but never shown

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