Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- JpaRepository update
- spring repository
- vuecomponent
- 자바버그수정
- Spring JPA Specification
- AllArgsConstructor
- @Builder @NoArgsConstructor
- Transactions Propagation Option
- docker 로그
- spring mapper
- spring DB Connection
- NoArgsConstructor
- repository annotation
- spring mapper annotation
- Data Annotation
- doker logs tail
- spring JPA DB Connection
- Vue
- mapper annotationo
- JAVA Exception 종류
- Spring
- vueslot
- CrudRepository update
- spring JPA DB multi Connection
- spring @mapper
- 도커 로그 확인
- 도커 logs
- JPA DB 다중 Connection
- JPA DB Connection 다중
- 도커 컨테이너 로그
Archives
- Today
- Total
목록리눅스줄수 (1)
개발을 잘하고 싶은 개발자
[Linux] 리눅스 파일의 글자 수를 알고 싶어 wc
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 ..
Linux
2021. 7. 30. 00:56