"리눅스 hexdump"의 두 판 사이의 차이

잔글 (로봇: 자동으로 텍스트 교체 (-[root@jmnote +[root@zetawiki))
잔글 (봇: 자동으로 텍스트 교체 (-<source lang='cli'> +<source lang='console'>))
5번째 줄: 5번째 줄:


==실습==
==실습==
<source lang='cli'>
<source lang='console'>
[root@zetawiki ~]# echo hello > hello.txt
[root@zetawiki ~]# echo hello > hello.txt
[root@zetawiki ~]# hexdump hello.txt
[root@zetawiki ~]# hexdump hello.txt
11번째 줄: 11번째 줄:
0000006
0000006
</source>
</source>
<source lang='cli'>
<source lang='console'>
[root@zetawiki ~]# gzip hello.txt
[root@zetawiki ~]# gzip hello.txt
[root@zetawiki ~]# hexdump hello.txt.gz  
[root@zetawiki ~]# hexdump hello.txt.gz  

2016년 3월 29일 (화) 12:36 판

1 개요

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

2 실습

[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 }}