반응형
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:~$반응형
'Infra Architecture > linux' 카테고리의 다른 글
| [ Shell Script ] grep 명령어 (0) | 2023.01.06 |
|---|---|
| [ Linux ] 윈도우와 리눅스의 줄바꿈 차이 (1) | 2023.01.05 |
| [ Linux ] Ubuntu 버전 확인 (0) | 2023.01.03 |
| [ Linux ] vi editor 사용법정리 (0) | 2023.01.03 |
| [ Infra linux ] linux에 xwindow 설치 (1) | 2022.12.28 |