我正在寻找wyd 0.2的替代品,可以从其遇到的任何类型的文件中提取字符串。
thanks =)
答案 0 :(得分:3)
strings
/ *填充,因为我需要15个字符* /
编辑自80年代后期以来,每个* nix都有一个名为strings
的程序,就是这样。您可以登录任何* nix,然后输入man strings
以获取更多信息。或者您可以键入strings -h
来显示
Usage: strings [option(s)] [file(s)]
Display printable strings in [file(s)] (stdin by default)
The options are:
-a - --all Scan the entire file, not just the data section
-f --print-file-name Print the name of the file before each string
-n --bytes=[number] Locate & print any NUL-terminated sequence of at
-<number> least [number] characters (default 4).
-t --radix={o,d,x} Print the location of the string in base 8, 10 or 16
-o An alias for --radix=o
-T --target=<BFDNAME> Specify the binary file format
-e --encoding={s,S,b,l,B,L} Select character size and endianness:
s = 7-bit, S = 8-bit, {b,l} = 16-bit, {B,L} = 32-bit
@<file> Read options from <file>
-h --help Display this information
-v --version Print the program's version number
然后可以传递给strings
的选项,以改变它的行为。