二进制“尾巴”一个文件

时间:2008-10-24 01:35:10

标签: c tail gnu-coreutils gnu-fileutils

我猜这个网站上的大多数人都熟悉tail,如果没有 - 它提供了一种“跟随”模式,当文本附加到文件尾部时会将这些字符转储到终端。

我正在寻找(并且可能在必要时写自己)是一个适用于二进制文件的尾部版本。基本上我有一个无线链接,我想通过另一个网络链接来涓流文件。查看尾部源代码,重写起来并不难,但我宁愿不重新发明轮子!这不是严格意义上的“尾部”,因为我希望整个文件被复制,但它会在添加新字节时进行观察并对其进行流式传输。

想法?

8 个答案:

答案 0 :(得分:14)

将其传输到hexdump:

tail -f somefile | hexdump -C

答案 1 :(得分:5)

还有bintail应用程序似乎比上述脚本更强大。

  

bintail 包中包含一个应用程序 bintail 。该程序从磁盘读取一个普通文件,并将输出管道输出到stdout,逐字节,没有转换,类似于 tail (1)对文本文件的作用。这对于“拖尾”二进制文件(例如WAV文件)非常有用,而它们是实时编写的。这个应用程序正在进行中,但它已经完成了它为我设计的目标。

答案 2 :(得分:2)

这个用于Windows的匆忙编码的Python脚本可能有所帮助:

# bintail.py -- reads a binary file, writes initial contents to stdout,
# and writes new data to stdout as it is appended to the file.

import time
import sys
import os
import msvcrt
msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)

# Time to sleep between file polling (seconds)
sleep_int = 1

def main():
    # File is the first argument given to the script (bintail.py file)
    binfile = sys.argv[1]

    # Get the initial size of file
    fsize = os.stat(binfile).st_size

    # Read entire binary file
    h_file = open(binfile, 'rb')
    h_bytes = h_file.read(128)
    while h_bytes:
        sys.stdout.write(h_bytes)
        h_bytes = h_file.read(128)
    h_file.close()


    # Loop forever, checking for new content and writing new content to stdout
    while 1:
        current_fsize = os.stat(binfile).st_size
        if current_fsize > fsize:
            h_file = open(binfile, 'rb')
            h_file.seek(fsize)
            h_bytes = h_file.read(128)
            while h_bytes:
                sys.stdout.write(h_bytes)
                h_bytes = h_file.read(128)
            h_file.close()
            fsize = current_fsize
        time.sleep(sleep_int)

if __name__ == '__main__':
    if len(sys.argv) == 2:
        main()
    else:
        sys.stdout.write("No file specified.")

答案 3 :(得分:1)

less somefile

然后按shift F

答案 4 :(得分:1)

严格来说,您需要编写一个程序来执行此操作,因为未指定tail处理二进制文件。如果您希望尽快收到新的“滴流”数据,也可能需要避免缓冲问题。

答案 5 :(得分:1)

Linux coreutils tail(1)在二进制文件上运行得很好。对于大多数应用程序,您只需要避免其行方向,以便输出不会在数据结构中间的某个随机位置开始。你可以通过简单地从文件的开头开始,这也是你要求的:

tail -c +1 -f somefile

工作正常。

答案 6 :(得分:0)

这不是尾巴 - 这是逐步复制文件。看看rsync。

答案 7 :(得分:0)

我使用它,因为它也适用于直播流:

cat ./some_file_or_dev | hexdump -C

示例转储我的按键(和发布):

[user@localhost input]$ sudo cat /dev/input/event2 | hexdump -C
00000000  81 32 b1 5a 00 00 00 00  e2 13 02 00 00 00 00 00  |.2.Z............|
00000010  04 00 04 00 36 00 00 00  81 32 b1 5a 00 00 00 00  |....6....2.Z....|
00000020  e2 13 02 00 00 00 00 00  01 00 36 00 01 00 00 00  |..........6.....|
00000030  81 32 b1 5a 00 00 00 00  e2 13 02 00 00 00 00 00  |.2.Z............|
00000040  00 00 00 00 00 00 00 00  81 32 b1 5a 00 00 00 00  |.........2.Z....|
00000050  a3 af 02 00 00 00 00 00  04 00 04 00 36 00 00 00  |............6...|
00000060  81 32 b1 5a 00 00 00 00  a3 af 02 00 00 00 00 00  |.2.Z............|
^C