” 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
查看上面的快照, 命令” od -b format.txt”以八进制显示, 命令” od -t x1 format.txt”以十六进制显示, 命令” od -c format.txt”以ASCII字符显示, 其中新行将标记为” \ n”
评论前必须登录!
注册