2007. 11. 3. 21:08 Unix
strings 명령어
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
UNIX GURU UNIVERSE
UNIX HOT TIP
Unix Tip 2340 - May 29, 2006
http://www.ugu.com/sui/ugu/show?tip.today
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
strings
오브젝트 파일(바이너리 파일)의 내용을 확인하기 위해서 vi 또는 cat 명령을 사용할
UNIX GURU UNIVERSE
UNIX HOT TIP
Unix Tip 2340 - May 29, 2006
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
strings
오브젝트 파일(바이너리 파일)의 내용을 확인하기 위해서 vi 또는 cat 명령을 사용할
수 없다, 그렇게 하기 위해 strings 명령을 사용하라.
% strings [바이너리 파일명]
위 명령은 오브젝트 파일에 있는 모든 인쇄 가능한 문자를 화면에 출력할 것이다.
기본적으로 strings 명령은 실행파일의 ASCII 문자를 찾아 화면에 출력한다.
core 파일과 다른 바이너리 에러 파일에 유용하다.
@@@@@@@@@@@@@@@@@@@@[ 원문 ]@@@@@@@@@@@@@@@@@@@@
STRINGS - OLD BUT A GOODIE
To check content of an object
file(binary file ) we can't use vi
or cat command, for that use strings
command.
% strings [name of binary file]
It will print all the printable strings
present in object file. Basically
strings command looks for ASCII strings
in executable file and print it.
Great for core files and other binary
error files
This tip generously supported by: aggarami@pcsbom.patni.com
반응형