Questions tagged «tail»

尾部是列表中排在头部之后的部分。这也是一个unix命令,显示文件的最后几行。

12
如何“ grep”连续流?
可以grep在连续流上使用吗? 我的意思是说是一条tail -f <file>命令,但grep在输出中仅保留我感兴趣的行。 我已经尝试过,tail -f <file> | grep pattern但是似乎grep只能在tail完成后才能执行,也就是说永远不会执行。
729 linux  bash  shell  grep  tail 

26
与Windows等效的Unix tail命令。
关闭。这个问题是题外话。它当前不接受答案。 想改善这个问题吗? 更新问题,使其成为Stack Overflow 的主题。 7年前关闭。 我正在寻找与Unix“ tail”命令等效的命令,该命令可使我在写入日志文件时监视其日志输出。
410 windows  tail 

12
Windows Powershell中的Unix tail等效命令
我必须查看大文件的最后几行(通常大小为500MB-2GB)。我正在寻找tailWindows Powershell 的等效Unix命令。有几种可用的替代方法, http://tailforwin32.sourceforge.net/ 和 获取内容[文件名] | 选择对象-最后10个 对我来说,不允许使用第一种选择,第二种选择很慢。有谁知道PowerShell的tail的高效实现。
349 windows  powershell  tail 

30
使用Python获取文件的最后n行,类似于tail
我正在为Web应用程序编写日志文件查看器,为此,我想在日志文件的各行中进行分页。文件中的项目是基于行的,底部是最新的项目。 因此,我需要一种tail()可以n从底部读取行并支持偏移量的方法。我想到的是这样的: def tail(f, n, offset=0): """Reads a n lines from f with an offset of offset lines.""" avg_line_length = 74 to_read = n + offset while 1: try: f.seek(-(avg_line_length * to_read), 2) except IOError: # woops. apparently file is smaller than what we want # to step back, go …
181 python  file  file-io  tail  logfiles 


11
打印文件中一行的最后一列
我有一个不断写入/更新的文件。我想找到包含特定单词的最后一行,然后打印该行的最后一列。 该文件看起来像这样。随着时间的流逝,更多的A1 / B1 / C1线将被附加到该行上。 A1 123 456 B1 234 567 C1 345 678 A1 098 766 B1 987 6545 C1 876 5434 我尝试使用 tail -f file | grep A1 | awk '{print $NF}' 打印值766,但没有任何输出。 有没有办法做到这一点?
135 file  awk  tail 

5
头尾一条线
有没有一种Python方式可以在单个命令中解压缩第一个元素和“ tail”中的列表? 例如: >> head, tail = **some_magic applied to** [1, 1, 2, 3, 5, 8, 13, 21, 34, 55] >> head 1 >>> tail [1, 2, 3, 5, 8, 13, 21, 34, 55]
90 python  list  tail  head 

12
如何在Python中拖尾日志文件?
Наэтотвопросестьответына堆栈溢出нарусском:Считываниесизменяющегосяфайла 我想在不阻塞或锁定的情况下在Python中提供tail -F或类似内容的输出。我在这里找到了一些非常老的代码来执行此操作,但我认为现在必须有更好的方法或库来执行相同的操作。有人知道吗? 理想情况下,我希望tail.getNewData()每次需要更多数据时都可以打电话给我。
76 python  tail 

9
Unix / Linux“ tail -f”的Java IO实现
我想知道使用什么技术和/或库来实现linux命令“ tail -f”的功能。我本质上是在寻找附加组件/替换的下降java.io.FileReader。客户端代码可能如下所示: TailFileReader lft = new TailFileReader("application.log"); BufferedReader br = new BufferedReader(lft); String line; try { while (true) { line= br.readLine(); // do something interesting with line } } catch (IOException e) { // barf } 缺少的部分是的合理实现TailFileReader。它应该能够读取文件打开之前存在的部分以及添加的行。
72 java  file  file-io  iostream  tail 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.