리눅스 strings

From IT Wiki
Revision as of 14:37, 17 October 2021 by 리마따자 (talk | contribs) (새 문서: ;파일에서 인쇄 가능한 문자열을 출력한다. * 유닉스와 리눅스 모두에서 명령어와 옵션이 같음 * 경로 : /usr/bin/strings == 사용법 == === 문법...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
파일에서 인쇄 가능한 문자열을 출력한다.
  • 유닉스와 리눅스 모두에서 명령어와 옵션이 같음
  • 경로 : /usr/bin/strings

사용법[edit | edit source]

문법[edit | edit source]

strings [옵션] 파일

옵션[edit | edit source]

  • -, -a, --all : 전체 파일을 검색한다.
  • -f, --print-file-name : 각 문자열 이전에 파일명을 출력한다.
  • -min-len, -n min-len, --bytes=min-len : 최소 문자열의 길이(min-len)를 지정한다. 기본값은 4이다.
  • -o : -t 옵션과 비슷하다.
  • -t radix, --radix=radix : 각 문자열 이전에 파일 안에 오프셋(radix)을 출력한다.

예제[edit | edit source]

참고 문헌[edit | edit source]