linux – grep如何知道它正在写入输入文件?

前端之家收集整理的这篇文章主要介绍了linux – grep如何知道它正在写入输入文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我尝试将grep的输出重定向到它正在读取的同一文件,如下所示:
$grep stuff file.txt > file.txt

我收到错误消息grep:输入文件’file.txt’也是输出. grep如何确定这一点?

解决方法

根据GNU grep源代码,grep检查输入和输出的i节点:
if (!out_quiet && list_files == 0 && 1 < max_count
      && S_ISREG (out_stat.st_mode) && out_stat.st_ino
      && SAME_INODE (st,out_stat))   /* <------------------ */
    {
      if (! suppress_errors)
        error (0,_("input file %s is also the output"),quote (filename));
      errseen = 1;
      goto cloSEOut;
    }

通过对STDOUT_FILENO调用fstat来填充out_stat.

if (fstat (STDOUT_FILENO,&tmp_stat) == 0 && S_ISREG (tmp_stat.st_mode))
    out_stat = tmp_stat;
原文链接:https://www.f2er.com/linux/394548.html

猜你在找的Linux相关文章