리눅스 head, tail 명령어
✅ 리눅스 head, tail 명령어head 명령어- 문서 내용의 앞부분 출력#자주 사용하는 옵션#-c, --bytes=[-]NUM#-n, --lines=[-]NUM$head ./test.log #기본적으로 위(첫줄부터)에서부터 10줄까지 보여줌$head -n 5 ./test.log #위에서부터 5줄$head -n -5 ./test.log #밑에서부터 5줄뺀 나머지 출력$cat ./test.log | head -n 5 #cat명령어 조합으로 사용tail 명령어- 문서 내용의 뒷부분 출력#자주 사용되는 옵션#-c, --bytes=[+]NUM : NUM byte만 출력#-n, --lines=[+]NUM : NUM line만 출력#-f, --follow[={name|descr}..
📺 Develop/🕋 Server
2021. 12. 20. 22:42