33

这个命令真的很有用,但是我可以从哪里得到源代码来看看里面发生了什么。

谢谢 。

4

4 回答 4

42

tail 实用程序是 linux 上 coreutils 的一部分。

我一直发现 FreeBSD 的源代码比 gnu 实用程序要清晰得多。所以这里是 FreeBSD 项目中的 tail.c:

于 2009-09-17T16:14:09.620 回答
1

浏览 uclinux 网站。由于他们分发了软件,因此他们需要以一种或另一种方式提供源代码。

或者,您可以阅读man fseek并猜测它是如何完成的。

NB-- 请参阅下面 William 的评论,有些情况下您不能使用 seek。

于 2009-09-17T16:10:38.600 回答
0

您可能会发现自己编写一个有趣的练习。绝大多数 Unix 命令行工具都是一页左右相当简单的 C 代码。

只看代码,可以在 gnu.org 或您最喜欢的 Linux 镜像站点上轻松找到 GNU CoreUtils 源代码。

于 2009-09-17T16:14:21.547 回答
-2
/`*This example implements the option n of tail command.*/`

    #define _FILE_OFFSET_BITS 64
    #include <stdio.h>
    #include <stdlib.h>
    #include <fcntl.h>
    #include <errno.h>
    #include <unistd.h>
    #include <getopt.h>

    #define BUFF_SIZE 4096

    FILE *openFile(const char *filePath)
    {
      FILE *file;
      file= fopen(filePath, "r");
      if(file == NULL)
      {
        fprintf(stderr,"Error opening file: %s\n",filePath);
        exit(errno);
      }
      return(file);
    }

    void printLine(FILE *file, off_t startline)
    {
      int fd;
      fd= fileno(file);
      int nread;
      char buffer[BUFF_SIZE];
      lseek(fd,(startline + 1),SEEK_SET);
      while((nread= read(fd,buffer,BUFF_SIZE)) > 0)
      {
        write(STDOUT_FILENO, buffer, nread);
      }
    }

    void walkFile(FILE *file, long nlines)
    {
      off_t fposition;
      fseek(file,0,SEEK_END);
      fposition= ftell(file);
      off_t index= fposition;
      off_t end= fposition;
      long countlines= 0;
      char cbyte;

      for(index; index >= 0; index --)
      {
        cbyte= fgetc(file);
        if (cbyte == '\n' && (end - index) > 1)
        {
          countlines ++;
          if(countlines == nlines)
          {
        break;
          }
         }
        fposition--;
        fseek(file,fposition,SEEK_SET);
      }
      printLine(file, fposition);
      fclose(file);
    }

    int main(int argc, char *argv[])
    {
      FILE *file;
      file= openFile(argv[2]);
      walkFile(file, atol(argv[1]));
      return 0;
    }

    /*Note: take in mind that i not wrote code to parse input options and arguments, neither code to check if the lines number argument is really a number.*/
于 2013-06-27T05:37:43.257 回答