Forrest logo
back to the od tool

od:tldr:0db95

od: Display file in verbose mode, i.e. without replacing duplicate lines with `*`.
$ od -v ${filename}
try on your machine

The command "od -v ${filename}" is used to display the contents of a file in a different format. Here's a breakdown of the command:

  • "od" stands for "octal dump." It is a command-line utility in Unix-like operating systems used to display the octal, decimal, or hexadecimal representation of file contents.
  • "-v" is an option that tells the "od" command to display all input data, even repeated lines. Without "-v," "od" would collapse consecutive identical lines into a single line with an asterisk to indicate repetition.
  • "${filename}" is a placeholder variable that represents the name of the file you want to display the contents of. Replace it with the actual filename, including the path if necessary.

Overall, the command "od -v ${filename}" will read the specified file and present its contents in octal, decimal, or hexadecimal format, displaying all data without collapsing repeated lines.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the od tool