xxd – POFTUT

Best Linux Hex Editors

Linux provides a lot of command line tools for easy and practical use. Hex editor packages are some of them. In this tutorial we will look hex editor which can be used to edit files especially binary files in hexadecimal format. Xxd Xxd is very popular hex editor between Linux application developers and system administrators. … Read more

How To Use Linux Xxd Command Tutorial For Hex and Binary Operations With Example?

Linux provides a lot of tools for hexadecimal and binary manipulation. Xxd is one of the most popular tool. Xxd is generally used to create hex dump of the given file or standard input. Help We can list help information about xxd command with the -h option. $ xxd -h Syntax We will use following … Read more

Linux od Command Tutorial With Examples To Dump Files Octal Number Format

od is a tool used to  dump files or input in different presentation formtas like octal, decimal, hexadecimal etc. od command especially useful for binary analysis also can be used to debug Linux scripts for unwanted characters. Help $ od –help Syntax od [OPTION]… [FILE]… Display File Octal Mode Octal mode is calculated with base … Read more