[linux] hexdump 명령어 사용법(-b, -c,-C,-d,-e,-f,-L,-n,-o,-s,-x,-v)
: hexdump 명령은 파일의 내용을 16진수/10진수/8진수/아스키로 화면에 표시하는 명령입니다. 목차 옵션설명기타-b, --one-byte-octal한 바이트 8진수 출력 옵션ex> 0000000 110 145 154 154 157 012-c, --one-byte-char한 바이트 문자 출력 옵션ex> 0000000 H e l l o \n-C, --canonicalhex + ascii 표시 옵션ex> 00000010 31 32 33 34 0 |1234.|-d, --two-bytes-decimal10진수 2바이트 표시 옵션ex> 0000010 12849 13363 00010-e, --format format string커스텀 format 형식 지정 옵션ex..