2004년 2월 5일 목요일

file의 내용 조사하기

$ file 파일명 - file의 type 알아내기

$ strings 파일명 - 파일 내의 string 모두 보여주기

$ hexdump 파일명 - 파일 내용을 hexcode로 dump

$ cat 파일명 - test 파일 내용보기

$ ldd 파일명 - binary 파일의 library dependency 알아내기

$ strace - trace system calls and signals

$ ltrace - A library call tracer

댓글 1개:

  1. $ head -n filename // shows n lines of 'filename' from the top

    $ tail -n filename // shows n lines of 'filename' from the bottom

    답글삭제