리눅스 hexdump

Jmnote (토론 | 기여)님의 2017년 1월 10일 (화) 10:08 판 (→‎실습)

1 개요

리눅스 hexdump
/usr/bin/hexdump
  • 16진모드 등으로 파일을 보여주는 리눅스 명령어

2 실습

[root@zetawiki ~]# echo hello | hexdump
0000000 6568 6c6c 0a6f                         
0000006
[root@zetawiki ~]# echo hello > hello.txt
[root@zetawiki ~]# hexdump hello.txt
0000000 6568 6c6c 0a6f                         
0000006
[root@zetawiki ~]# gzip hello.txt
[root@zetawiki ~]# hexdump hello.txt.gz 
0000000 8b1f 0808 15aa 541d 0300 6568 6c6c 2e6f
0000010 7874 0074 48cb c9cd e7c9 0002 3020 363a
0000020 0006 0000                              
0000024

3 같이 보기

4 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}