일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- bash
- web.xml
- find
- maVen
- GIT
- Mac
- resource
- grep
- 네트워크
- port
- JavaScript
- VirtualBox
- 단축키
- tomcat
- Windows 10
- context
- import
- ssh
- Eclipse
- xargs
- IntelliJ
- vscode
- profile
- 줄바꿈 문자
- Quartz
- plugin
- netsh
- lsof
- Source
- Windows
- Today
- Total
목록OS & Shell/Mac (39)
develog
8080 포트가 열린 경우 $ nc -z localhost 8080 Connection to localhost port 8080 [tcp/http-alt] succeeded!
vi config 설정$ vi ~/.vimrcsyntax on"set numberset hlsearchset autoindentset ts=4set sts=4set smartindentset tabstop=4set expandtabset shiftwidth=4set nowrapcolorscheme torte"colorscheme industry"colorscheme slate"colorscheme delek"colorscheme elflord
date 명령어 ## 시간 변경 $ sudo date HHmm ## 날짜, 시간 변경 $ sudo date MMddHHmm ## 날짜, 시간, 연도 변경 # 월일시분연도4자리 $ sudo date MMddHHmmyyyy # 월일시분연도2자리 $ sudo date MMddHHmmyy 날짜 변경 # 2020-12-25 로 변경 $ sudo date 12250000 $ sudo date 122500002020 # 날짜 하루씩 증가 $ sudo date $(date -v +1d '+%m%d%H%M') 날짜 동기화 $ sudo sntp -sS time.apple.com
## human-readable, depth 1 du -hd1 ## 용량 내림차순 du -d1 batch/* | sort -nr ## 용량이 MB, GB 인 것만 출력 du -hd1 batch/* | sort -nr | grep -E 'M|G'