个性化阅读
专注于IT技术分析

Linux od过滤器

” od”一词代表八进制转储。它以不同的人类可读格式(例如十六进制, 八进制和ASCII字符)显示文件的内容。

句法:

od -b <fileName>		(display files in octal format)
od -t x1 <fileName>		(display files in hexadecimal bytes format)
od -c <fileName>		(display files in ASCII (backslashed) character format)

例:

od -b format.txt                          
od -t x1 format.txt
od -c format.txt
Linux od过滤器

查看上面的快照, 命令” od -b format.txt”以八进制显示, 命令” od -t x1 format.txt”以十六进制显示, 命令” od -c format.txt”以ASCII字符显示, 其中新行将标记为” \ n”

赞(0)
未经允许不得转载:srcmini » Linux od过滤器

评论 抢沙发

评论前必须登录!