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
- ssh
- Quartz
- netsh
- IntelliJ
- import
- context
- grep
- VirtualBox
- xargs
- 줄바꿈 문자
- 네트워크
- JavaScript
- Windows 10
- lsof
- find
- Windows
- vscode
- port
- GIT
- tomcat
- maVen
- bash
- 단축키
- plugin
- Eclipse
- profile
- Mac
- Source
- web.xml
- resource
Archives
- Today
- Total
develog
[windows] get-content select-string (tail grep) 본문
powershell 에서 실행
# basic
get-content 파일명 -tail 10 -wait | select-string -pattern 찾을내용
# short
gc 파일명 -tail 10 -wait | sls -pattern 찾을내용
Comments