llvm-strings - 打印字符串

概要

llvm-strings [选项] [输入…]

描述

llvm-strings 是一个旨在作为 GNU strings 的替代品的工具,它在文件中查找可打印的字符串并将它们写入标准输出流。可打印字符串是任何四个(默认情况下)或更多可打印 ASCII 字符的序列。文件结尾或任何其他字节都会终止当前序列。

llvm-strings 在每个指定的 输入 文件中查找字符串。与 GNU strings 不同,它在整个输入文件中查找字符串,而不仅仅是将搜索限制在对象文件的某些 section 中。如果将 “-” 指定为 输入,或者未指定 输入,则程序从标准输入流读取。

示例

$ cat input.txt
bars
foo
wibble blob
$ llvm-strings input.txt
bars
wibble blob

选项

--all, -a

静默忽略。为与 GNU strings 兼容而存在。

--bytes=<length>, -n

设置字节序列被视为字符串所需的最小可打印 ASCII 字符数。默认值为 4。

--help, -h

显示命令行选项的摘要。

--print-file-name, -f

在每个字符串之前显示包含文件名。

示例

$ llvm-strings --print-file-name test.o test.elf
test.o: _Z5hellov
test.o: some_bss
test.o: test.cpp
test.o: main
test.elf: test.cpp
test.elf: test2.cpp
test.elf: _Z5hellov
test.elf: main
test.elf: some_bss
--radix=<radix>, -t

在每个字符串之前显示字符串在文件中的偏移量,并使用指定的 radix。有效的 <radix> 值是 odx,分别代表八进制、十进制和十六进制。

示例

$ llvm-strings --radix=o test.o
    1054 _Z5hellov
    1066 .rela.text
    1101 .comment
    1112 some_bss
    1123 .bss
    1130 test.cpp
    1141 main
$ llvm-strings --radix=d test.o
    556 _Z5hellov
    566 .rela.text
    577 .comment
    586 some_bss
    595 .bss
    600 test.cpp
    609 main
$ llvm-strings -t x test.o
    22c _Z5hellov
    236 .rela.text
    241 .comment
    24a some_bss
    253 .bss
    258 test.cpp
    261 main
--version

显示 llvm-strings 可执行文件的版本。

@<FILE>

从响应文件 <FILE> 读取命令行选项。

退出状态

如果发生错误,llvm-strings 以非零退出代码退出。否则,它以代码 0 退出。

Bug 报告

要报告 Bug,请访问 <https://github.com/llvm/llvm-project/labels/tools:llvm-strings/>。