博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hexdump常用参数
阅读量:6292 次
发布时间:2019-06-22

本文共 1737 字,大约阅读时间需要 5 分钟。

在分析mysql binlog或者ibd文件时候,常会用到hexdump 查看物理文件的存储内容。


参考:

node1:~ # hexdump --help  (常用下面3个红色标注的参数)

hexdump: invalid option -- '-'

Usage:

hexdump [options] file...

Options:

-b              one-byte octal display           8进制显示

-c              one-byte character display       ASCII显示

-C              canonical hex+ASCII display       十六进制+ASCII显示

-d              two-byte decimal display        两字节计算,显示为10进制方式

-o              two-byte octal display         两字节计算,显示为8进制方式

-x              two-byte hexadecimal display    两字节计算,显示为16进制方式

-e format       format string to be used for displaying data   格式化输出

-f format_file  file that contains format strings

-n length       interpret only length bytes of input    输出多少个bytes的字符长度的内容

-s offset       skip offset bytes from the beginning    输出文件的开始偏移量  【注意:偏移量从0开始的!】

-v              display without squeezing similar lines    

-V              output version information and exit



案例:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
cat 
test
.txt < EOF
AbCDEF
GHIJKL
123456
EOF
 
[root@node1 ~]$ hexdump -b 
test
.txt
0000000 101 142 103 104 105 106 012 107 110 111 112 113 114 012 061 062
0000010 063 064 065 066 012
[root@node1 ~]$ hexdump -c 
test
.txt   可以看到\n表示文件中有换行(注意:linux下换行是\n  windows下换行是\r\n)
0000000   A   b   C   D   E   F  \n   G   H   I   J   K   L  \n   1   2
0000010   3   4   5   6  \n                                            
0000015
 
[root@node1 ~]$ hexdump -C 
test
.txt
00000000  41 62 43 44 45 46 0a 47  48 49 4a 4b 4c 0a 31 32  |AbCDEF.GHIJKL.12|
00000010  33 34 35 36 0a                                    |3456.|
00000015
 
[root@node1 ~]$ hexdump -d 
test
.txt
0000000   25153   17475   17989   18186   18760   19274   02636   12849
0000010   13363   13877   00010                                        
0000015
 
[root@node1 ~]$ hexdump -C -s 0 -n 3 
test
.txt
00000000  41 62 43                                          |AbC|
00000003
 
[root@node1 ~]$ hexdump -C -s 8  
test
.txt   从偏移量8开始输出全部内容
00000008  48 49 4a 4b 4c 0a 31 32  33 34 35 36 0a           |HIJKL.123456.|
00000015
本文转自 lirulei90 51CTO博客,原文链接:http://blog.51cto.com/lee90/1979067,如需转载请自行联系原作者
你可能感兴趣的文章
【转载】每个程序员都应该学习使用Python或Ruby
查看>>
PHP高级编程之守护进程,实现优雅重启
查看>>
PHP字符编码转换类3
查看>>
rsync同步服务配置手记
查看>>
http缓存知识
查看>>
Go 时间交并集小工具
查看>>
iOS 多线程总结
查看>>
webpack是如何实现前端模块化的
查看>>
TCP的三次握手四次挥手
查看>>
关于redis的几件小事(六)redis的持久化
查看>>
webpack4+babel7+eslint+editorconfig+react-hot-loader 搭建react开发环境
查看>>
Maven 插件
查看>>
初探Angular6.x---进入用户编辑模块
查看>>
计算机基础知识复习
查看>>
【前端词典】实现 Canvas 下雪背景引发的性能思考
查看>>
大佬是怎么思考设计MySQL优化方案的?
查看>>
<三体> 给岁月以文明, 给时光以生命
查看>>
Android开发 - 掌握ConstraintLayout(九)分组(Group)
查看>>
springboot+logback日志异步数据库
查看>>
Typescript教程之函数
查看>>