일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- NoArgsConstructor
- Vue
- JPA DB Connection 다중
- spring mapper annotation
- JAVA Exception 종류
- Data Annotation
- spring repository
- spring mapper
- JpaRepository update
- @Builder @NoArgsConstructor
- mapper annotationo
- spring JPA DB Connection
- spring JPA DB multi Connection
- spring @mapper
- 도커 컨테이너 로그
- doker logs tail
- AllArgsConstructor
- Transactions Propagation Option
- CrudRepository update
- vuecomponent
- spring DB Connection
- 도커 logs
- Spring JPA Specification
- vueslot
- repository annotation
- 자바버그수정
- JPA DB 다중 Connection
- 도커 로그 확인
- docker 로그
- Spring
- Today
- Total
목록Linux (2)
개발을 잘하고 싶은 개발자
웹 로그에서 HTTP Response 상태값 200, 404, 300, 500 등 많은 데이터를 분석하기 위해 종종 awk 명령어로 분석한다 예를들어 아래와 같이 생긴 아파치 access 로그 'access_20210731.log' 파일을 분석할 때 127.0.0.1 - frank [10/Oct/2000:13:56:36 -0700] "GET /apache_pb.gif HTTP/1.0" 200 2326 127.0.0.1 - sofia [10/Oct/2000:14:15:30 -0700] "GET /apache_pb.gif HTTP/1.0" 302 5034 127.0.0.1 - tomas [10/Oct/2000:14:15:39 -0700] "GET /apache_pb.gif HTTP/1.0" 200 2327 ..
wc 명령어란? word count의 줄임말은 w(orld)c(ount)는 글자 수 외에도 파일의 바이트, 문자, 단어, 줄 라인을 알려주는 유용한 명령어이다 1. 파일의 바이트 수를 알려줘 wc -c [파일명] $cat text.txt a b 1 & -- 테스트 $wc -c text.txt 26 text.txt 2. 문자들의 수를 알려줘 $cat text.txt a b 1 & 테스트 $wc -m text.txt 12 text.txt 3. 몇 줄인지 알려줘 $cat text.txt a b 1 & 테스트 $wc -l text.txt 5 text.txt 4. 이 파일에는 몇 개의 단어가 있어? (공백도 하나의 단어로 처리) $cat text.txt a b 12 3 & 테스트 $wc -w text.txt 7 ..