Linux od Command
In this tutorial we learn how to use od commmand in Linux. od command is od - dump files in octal and other formats
In this tutorial we learn how to use od command in Linux. od command is od - dump files in octal and other formats
od [OPTION]... [FILE]...
od [-abcdfilosx]... [FILE] [[+]OFFSET[.][b]]
od --traditional [OPTION]... [FILE] [[+]OFFSET[.][b] [+][LABEL][.][b]]
We can use man
and info
command to see the manual page of od command.
od command also have --help
option to show list of options.
To open man page for od command we can use command below. To exit man or info page you can press q
.
man od
To open info page for od command we can use command below.
info od
To open help page from od command we can run command below.
od --help
You can find od command source code from the folowing repositories:
You can read tutorials of related Linux commands below:
In this tutorial we learn how to use od in Linux with practical examples. Visit our Linux Commands guide to learn more about using command line interface in Linux.