Notice
Recent Posts
Recent Comments
목록shell command (1)
준호씨의 블로그
tail 커맨드에서 첫 라인 제외 하고 나머지 출력 하는 방법
some.log 라는 파일이 다음과 같을 때 aaa bbb ccc tail -n +2 some.log 의 결과는 bbb ccc 가 나온다. 한줄 더 제거 하고 싶으면 다음과 같이 하면 된다. tail -n +3 some.log ccc -n x 옵션에서 x 에 + 를 붙이면 x-1 만큼 라인을 빼고 tail 을 한다고 보면 된다. 참고 https://stackoverflow.com/questions/339483/how-can-i-remove-the-first-line-of-a-text-file-using-bash-sed-script
IT이야기
2018. 8. 10. 00:50