[Windows] powershell grep
Window OS의 Powershell 에서 Unix 의 grep 명령어와 같은 기능을 수행하는 명령어 Linux / Unix 의 Terminal 경우 ls | grep "hello" 와 같이 입력시 "hello" 을 포함한 결과 리스트를 확인 할 수 있다. Window OS의 Powershell 에서는 아래와 같이 사용 가능하다. ls | select-string -pattern hello 1) 앞의 명령 수행 결과의 특정 패턴 잡아 내기 PS C:\> get-process | select-string -pattern WS System.Diagnostics.Process (WSAgent) System.Diagnostics.Process (WSPMonitor) 2) 파일안에서 특정한 패턴 잡아 내기 PS..
Computer/OS (Windows, Linux, Android, iOS ..)
2020. 5. 10. 01:24