본문 바로가기

Infra Architecture/linux

[ Linux ] 리눅스에서 16진수로 출력(hexdump)

반응형

 

hexdump명령어

 

hexdump -C 파일이름 을 하면 16진수와 아스키코드 모두를 출력한다.

 

test@ykd2:~$ cat hello_echo.txt
hello

test@ykd2:~$ hexdump -C hello_echo.txt
00000000  68 65 6c 6c 6f 0a 0a                              |hello..|
00000007
test@ykd2:~$
반응형