Forrest logo
back to context overview

od

List of commands for od:

  • od:tldr:0db95 od: Display file in verbose mode, i.e. without replacing duplicate lines with `*`.
    $ od -v ${filename}
    try on your machine
    explain this command
  • od:tldr:3f633 od: Display file in hexadecimal format (2-byte units), with byte offsets in decimal format.
    $ od --format=${x} --address-radix=${d} -v ${filename}
    try on your machine
    explain this command
  • od:tldr:43b42 od: Display file using default settings: octal format, 8 bytes per line, byte offsets in octal, and duplicate lines replaced with `*`.
    $ od ${filename}
    try on your machine
    explain this command
  • od:tldr:6facb od: Read only 100 bytes of a file starting from the 500th byte.
    $ od --read-bytes ${100} --skip-bytes=${500} -v ${filename}
    try on your machine
    explain this command
  • od:tldr:f67f6 od: Display file in hexadecimal format (1-byte units), and 4 bytes per line.
    $ od --format=${x1} --width=${4} -v ${filename}
    try on your machine
    explain this command
back to context overview