일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- lsof
- vscode
- 줄바꿈 문자
- Source
- Eclipse
- IntelliJ
- Windows 10
- bash
- VirtualBox
- find
- GIT
- tomcat
- profile
- plugin
- ssh
- web.xml
- import
- grep
- port
- context
- 네트워크
- xargs
- Windows
- JavaScript
- 단축키
- resource
- netsh
- maVen
- Mac
- Quartz
- Today
- Total
목록OS & Shell (147)
develog
list=( aa bb ) for item in ${list[@]} do echo $item done
다른 bash 파일 인클루드 방법 source some_bash_file.sh example ## 인클루드 할 파일 $ vi common.sh HOME_PATH=/home ## 인클루드 하는 파일 $ vi run.sh source ./common.sh echo $HOME_PATH ## 실행 $ ./run.sh /home
support.apple.com/ko-kr/guide/mac-help/cpmh0152/mac Mac 키보드상의 Windows 키 Mac 키보드에는 Windows 키보드 상의 키들과 동일하게 동작하지만 이름이 다른 키가 많습니다. support.apple.com
파일 리스트 검색 find 로 파일을 검색하고 정규식으로 필터링한다 (egrep, grep -E) 파일명에 class 또는 xml 이 포함된 파일을 찾는다 ## egrep -i : 대소문자 무시 find . -type f | egrep -i 'class|xml' 확장자가 .jsp 로 끝나지 않는 jsp 파일을 검색한다 find . -type f | grep '.jsp' | grep -v -E '\.jsp$' 파일 내용 검색 파일명 필터링 (대소문자 무시) 파일 내용 검색 (대소문자 무시) 후 파일명과 내용 출력 find . -type f | egrep -i '(XML|PROPERTIES)$' | xargs egrep -i 'DEFAULT' 파일명 필터링 (.xml, .jsp) 내용에 'Logger'(대소..