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 | 31 |
Tags
- netsh
- Windows
- maVen
- resource
- grep
- ssh
- 단축키
- find
- VirtualBox
- web.xml
- Mac
- profile
- Quartz
- 네트워크
- context
- import
- 줄바꿈 문자
- tomcat
- lsof
- xargs
- Eclipse
- JavaScript
- vscode
- GIT
- plugin
- IntelliJ
- bash
- Windows 10
- Source
- port
Archives
- Today
- Total
develog
vi 대소문자 구분 검색 본문
# 대소문자 구분 검색
/oldCamelCase
# 대소문자 구분없이 검색 \c
/oldCamelCase\c
# 파일 전체에서 바꾸기
:%s/oldCamelCase/newCamelCase/g
Comments