Infra Architecture/linux
[ Linux ] 리눅스에서 16진수로 출력(hexdump)
물극필반99
2023. 1. 5. 17:44
반응형
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:~$
반응형