$ 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
$ head -n filename // shows n lines of 'filename' from the top
답글삭제$ tail -n filename // shows n lines of 'filename' from the bottom