윈도우 find 명령어
-
윈도우 명령어 [ find ] - 파일에서 텍스트 찾기Windows/Windows 2008 , 2012 2019. 10. 14. 19:44
find : 파일에서 텍스트 찾는 명령어 /V 지정한 문자열을 포함하지 않는 라인을 표시 /C 지정한 문자열을 포함하는 라인 수를 표시 /N 지정한 문자열을 포함하는 맨 앞에 라인 번호를 표시 /I 대/소문자 구분하지 않고, 찾기 example.txt python is beautiful python is storng python is effective pytho is beautiful pytho is storng pytho is effective find 옵션 없이 사용. (python이라는 문자열 포함하는 라인 출력) C:\>find "python" example.txt ---------- EXAMPLE.TXT python is beautiful python is storng python is effe..