Home » Linux Od Command

Linux Od Command

by Online Tutorials Library

Linux od

The ‘od’ term stands for octal dump. It displays content of a file in different human-readable formats like hexadecimal, octal and ASCII characters.

Syntax:

Example:

Linux Od Filters1

Look at the above snapshot, command “od -b format.txt” displays in octal format, command “od -t x1 format.txt” displays in hexadecimal format, command “od -c format.txt” displays in ASCII character where a new line will be marked with ‘n’

Next TopicLinux sort

You may also like