Found online-converter "HexDump Online: show contents of a binary file in hex" - https://www.fileformat.info/tool/hexdump.htm

I downloaded their program "command line version of hexdump".

How to use hexdump in the command line to save the code in txt?

    1 answer 1

    The documentation for the command line version says: "It’s on the hex on stdout ."

    This means that at the end of the command line you need to add > имяфайла and output will go to this file.

    • Added ">> file path" - it turned out ... - user318092
    • @ user318092 >> means "to add a file, if it already exists." > means "overwrite file". - AnT
    • If the file does not have both options work ... - user318092
    • @ user318092 If there is no file, both options work the same way. If the file is - in different ways. Why did you need it right away >> is not clear. - AnT
    • On the Internet, information on the command line is incomplete ... - user318092